summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/config.go b/utils/config.go
index cbae0e2cb..39dbca4d8 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -264,6 +264,10 @@ func getClientConfig(c *model.Config) map[string]string {
props["RestrictCustomEmojiCreation"] = *c.ServiceSettings.RestrictCustomEmojiCreation
props["MaxFileSize"] = strconv.FormatInt(*c.FileSettings.MaxFileSize, 10)
+ props["AppDownloadLink"] = *c.NativeAppSettings.AppDownloadLink
+ props["AndroidAppDownloadLink"] = *c.NativeAppSettings.AndroidAppDownloadLink
+ props["IosAppDownloadLink"] = *c.NativeAppSettings.IosAppDownloadLink
+
if IsLicensed {
if *License.Features.CustomBrand {
props["EnableCustomBrand"] = strconv.FormatBool(*c.TeamSettings.EnableCustomBrand)