You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
426 B
18 lines
426 B
package controllers |
|
|
|
import ( |
|
"encoding/json" |
|
"net/http" |
|
|
|
"github.com/owncast/owncast/config" |
|
"github.com/owncast/owncast/router/middleware" |
|
) |
|
|
|
// GetWebConfig gets the status of the server. |
|
func GetWebConfig(w http.ResponseWriter, r *http.Request) { |
|
middleware.EnableCors(&w) |
|
|
|
configuration := config.Config.InstanceDetails |
|
configuration.Version = config.Config.VersionInfo |
|
json.NewEncoder(w).Encode(configuration) |
|
}
|
|
|