summaryrefslogtreecommitdiffstats
path: root/model/config.go
diff options
context:
space:
mode:
authorBalasankar C <balasankarc@users.noreply.github.com>2018-05-18 19:27:30 +0530
committerHarrison Healey <harrisonmhealey@gmail.com>2018-05-18 09:57:30 -0400
commitd3ead7dc8535f8fa5b175686cc1f7669c8b1648b (patch)
treead6e0294e908f71c28f5fed1372c09b972e803a5 /model/config.go
parentc6cbce610043bb050f2c542412eb439dc22c4a88 (diff)
downloadchat-d3ead7dc8535f8fa5b175686cc1f7669c8b1648b.tar.gz
chat-d3ead7dc8535f8fa5b175686cc1f7669c8b1648b.tar.bz2
chat-d3ead7dc8535f8fa5b175686cc1f7669c8b1648b.zip
MM-10640 Set EnableUserCreation to true by default (#8815)
* Set EnableUserCreation to true by default * Fix argument type to FormatBool * Convert EnableUserCreation instances to pointer * Convert to boolean in tests also * Set value of pointer to be false * Convert remaining EnableUserCreation instances to pointer
Diffstat (limited to 'model/config.go')
-rw-r--r--model/config.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/model/config.go b/model/config.go
index 64107c42d..a54d44110 100644
--- a/model/config.go
+++ b/model/config.go
@@ -980,7 +980,7 @@ type TeamSettings struct {
SiteName string
MaxUsersPerTeam *int
EnableTeamCreation *bool
- EnableUserCreation bool
+ EnableUserCreation *bool
EnableOpenServer *bool
RestrictCreationToDomains string
EnableCustomBrand *bool
@@ -1111,6 +1111,11 @@ func (s *TeamSettings) SetDefaults() {
if s.EnableTeamCreation == nil {
s.EnableTeamCreation = NewBool(true)
}
+
+ if s.EnableUserCreation == nil {
+ s.EnableUserCreation = NewBool(true)
+ }
+
}
type ClientRequirements struct {