mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 13:27:21 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			283 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 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))
 | 
						|
}
 |