mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-10-31 23:40:11 +00:00
hide updates from settings when disabled at build-time
This commit is contained in:
parent
a8bf670697
commit
618cc32a17
9
api.go
9
api.go
@ -1246,6 +1246,15 @@ func (app *appContext) GetConfig(gc *gin.Context) {
|
|||||||
el := resp.Sections["email"].Settings["language"]
|
el := resp.Sections["email"].Settings["language"]
|
||||||
el.Options = emailOptions
|
el.Options = emailOptions
|
||||||
el.Value = app.config.Section("email").Key("language").MustString("en-us")
|
el.Value = app.config.Section("email").Key("language").MustString("en-us")
|
||||||
|
if updater == "" {
|
||||||
|
delete(resp.Sections, "updates")
|
||||||
|
for i, v := range resp.Order {
|
||||||
|
if v == "updates" {
|
||||||
|
resp.Order = append(resp.Order[:i], resp.Order[i+1:]...)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
for sectName, section := range resp.Sections {
|
for sectName, section := range resp.Sections {
|
||||||
for settingName, setting := range section.Settings {
|
for settingName, setting := range section.Settings {
|
||||||
val := app.config.Section(sectName).Key(settingName)
|
val := app.config.Section(sectName).Key(settingName)
|
||||||
|
Loading…
Reference in New Issue
Block a user