summaryrefslogtreecommitdiffstats
path: root/model
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2018-10-24 06:52:53 -0400
committerGeorge Goldberg <george@gberg.me>2018-10-24 11:52:53 +0100
commit159c2a44dced5d6331f5fc5e7220e561e6468ad1 (patch)
treede48ae39e63658228f76cd453ab77a2901e04492 /model
parent7393d23261a41f00332f5f0b1e3cdf3ad3151802 (diff)
downloadchat-159c2a44dced5d6331f5fc5e7220e561e6468ad1.tar.gz
chat-159c2a44dced5d6331f5fc5e7220e561e6468ad1.tar.bz2
chat-159c2a44dced5d6331f5fc5e7220e561e6468ad1.zip
MM-10987 Turn on ExperimentalLimitClientConfig by default and remove setting (#9696)
Diffstat (limited to 'model')
-rw-r--r--model/config.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/model/config.go b/model/config.go
index 0774ff9a6..6633c785c 100644
--- a/model/config.go
+++ b/model/config.go
@@ -274,7 +274,6 @@ type ServiceSettings struct {
ImageProxyOptions *string
EnableAPITeamDeletion *bool
ExperimentalEnableHardenedMode *bool
- ExperimentalLimitClientConfig *bool
EnableEmailInvitations *bool
}
@@ -566,10 +565,6 @@ func (s *ServiceSettings) SetDefaults() {
if s.ExperimentalEnableHardenedMode == nil {
s.ExperimentalEnableHardenedMode = NewBool(false)
}
-
- if s.ExperimentalLimitClientConfig == nil {
- s.ExperimentalLimitClientConfig = NewBool(false)
- }
}
type ClusterSettings struct {