mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-01 02:44:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			420 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			420 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package controllers
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"net/http"
 | |
| 
 | |
| 	"github.com/gabek/owncast/config"
 | |
| 	"github.com/gabek/owncast/router/middleware"
 | |
| )
 | |
| 
 | |
| //GetWebConfig gets the status of the server
 | |
| func GetWebConfig(w http.ResponseWriter, r *http.Request) {
 | |
| 	middleware.EnableCors(&w)
 | |
| 
 | |
| 	configuration := config.Config.InstanceDetails
 | |
| 	configuration.Version = config.Config.VersionInfo
 | |
| 	json.NewEncoder(w).Encode(configuration)
 | |
| }
 | 
