owncast/webserver/handlers/customJavascript.go
Gabe Kangas 15c687e3be WIP
2024-09-25 21:35:10 -07:00

17 lines
422 B
Go

package handlers
import (
"net/http"
"github.com/owncast/owncast/persistence/configrepository"
)
// ServeCustomJavascript will serve optional custom Javascript.
func ServeCustomJavascript(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/javascript; charset=utf-8")
configRepository := configrepository.Get()
js := configRepository.GetCustomJavascript()
_, _ = w.Write([]byte(js))
}