summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/utils/config.go b/utils/config.go
index 399e3a54c..14f827983 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -437,6 +437,13 @@ func getClientConfig(c *model.Config) map[string]string {
props["RestrictPrivateChannelManageMembers"] = *c.TeamSettings.RestrictPrivateChannelManageMembers
props["TeammateNameDisplay"] = *c.TeamSettings.TeammateNameDisplay
+ props["AndroidLatestVersion"] = c.ClientRequirements.AndroidLatestVersion
+ props["AndroidMinVersion"] = c.ClientRequirements.AndroidMinVersion
+ props["DesktopLatestVersion"] = c.ClientRequirements.DesktopLatestVersion
+ props["DesktopMinVersion"] = c.ClientRequirements.DesktopMinVersion
+ props["IosLatestVersion"] = c.ClientRequirements.IosLatestVersion
+ props["IosMinVersion"] = c.ClientRequirements.IosMinVersion
+
props["EnableOAuthServiceProvider"] = strconv.FormatBool(c.ServiceSettings.EnableOAuthServiceProvider)
props["GoogleDeveloperKey"] = c.ServiceSettings.GoogleDeveloperKey
props["EnableIncomingWebhooks"] = strconv.FormatBool(c.ServiceSettings.EnableIncomingWebhooks)