19 lines
356 B
Go
19 lines
356 B
Go
|
package controllers
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gabek/owncast/config"
|
||
|
"github.com/gabek/owncast/router/middleware"
|
||
|
)
|
||
|
|
||
|
//GetWebConfig gets the status of the server
|
||
|
func GetWebConfig(w http.ResponseWriter, r *http.Request) {
|
||
|
middleware.EnableCors(&w)
|
||
|
|
||
|
config := config.Config.InstanceDetails
|
||
|
|
||
|
json.NewEncoder(w).Encode(config)
|
||
|
}
|