mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
13 lines
283 B
Go
13 lines
283 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))
|
|
}
|