14 lines
276 B
Go
14 lines
276 B
Go
|
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()
|
||
|
w.Write([]byte(js))
|
||
|
}
|