2023-01-19 07:38:24 +01:00
|
|
|
package controllers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/owncast/owncast/core/data"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ServeCustomJavascript will serve optional custom Javascript.
|
|
|
|
func ServeCustomJavascript(w http.ResponseWriter, r *http.Request) {
|
|
|
|
js := data.GetCustomJavascript()
|
2023-01-19 07:45:16 +01:00
|
|
|
_, _ = w.Write([]byte(js))
|
2023-01-19 07:38:24 +01:00
|
|
|
}
|