1
0

feat: move custom logo setting to api

This commit is contained in:
kolaente
2024-02-09 14:33:21 +01:00
parent d7dc209f15
commit db2ec45378
4 changed files with 4 additions and 3 deletions

View File

@ -63,6 +63,7 @@ const (
ServiceEnableUserDeletion Key = `service.enableuserdeletion`
ServiceMaxAvatarSize Key = `service.maxavatarsize`
ServiceAllowIconChanges Key = `service.allowiconchanges`
ServiceCustomLogoURL Key = `service.customlogourl`
SentryEnabled Key = `sentry.enabled`
SentryDsn Key = `sentry.dsn`

View File

@ -79,7 +79,7 @@ func serveIndexFile(c echo.Context, assetFs http.FileSystem) (err error) {
if config.ServiceAllowIconChanges.GetBool() {
data["ALLOW_ICON_CHANGES"] = "true"
}
data["CUSTOM_LOGO_URL"] = "" // TODO
data["CUSTOM_LOGO_URL"] = config.ServiceCustomLogoURL.GetString()
err = tmpl.Execute(&tplOutput, data)
if err != nil {