22 lines
533 B
Go
22 lines
533 B
Go
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)
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
configuration := config.Config.InstanceDetails
|
|
configuration.Version = config.Config.VersionInfo
|
|
if err := json.NewEncoder(w).Encode(configuration); err != nil {
|
|
badRequestHandler(w, err)
|
|
}
|
|
}
|