feature: enableCustomJs toggle to allow loading ./custom-webui/custom.js (#379)

This commit is contained in:
James Read
2024-08-09 09:21:50 +00:00
committed by GitHub
parent fab0264d9b
commit 5b5fca0837
3 changed files with 10 additions and 0 deletions
+2
View File
@@ -31,6 +31,7 @@ type webUISettings struct {
DefaultIconForBack string
SshFoundKey string
SshFoundConfig string
EnableCustomJs bool
}
func findWebuiDir() string {
@@ -115,6 +116,7 @@ func generateWebUISettings(w http.ResponseWriter, r *http.Request) {
DefaultIconForBack: cfg.DefaultIconForBack,
SshFoundKey: installationinfo.Runtime.SshFoundKey,
SshFoundConfig: installationinfo.Runtime.SshFoundConfig,
EnableCustomJs: cfg.EnableCustomJs,
})
w.Header().Add("Content-Type", "application/json")