summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-08-27 12:09:35 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-27 12:09:35 -0400
commit305a74c78d25a9e8fd6a5d03a8431c160226e1f4 (patch)
tree4382c340d3e4b7c228400f01ad21fc6a76262fb2 /utils/config.go
parentd3093028cff337ede3747c6f0908eda432c3cb88 (diff)
parent9abf980b0eadc51025282464b19d179d845b6769 (diff)
downloadchat-305a74c78d25a9e8fd6a5d03a8431c160226e1f4.tar.gz
chat-305a74c78d25a9e8fd6a5d03a8431c160226e1f4.tar.bz2
chat-305a74c78d25a9e8fd6a5d03a8431c160226e1f4.zip
Merge pull request #474 from mattermost/PL-4
Fixes PL-1 and PL-3 Restricting team creation
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go22
1 files changed, 12 insertions, 10 deletions
diff --git a/utils/config.go b/utils/config.go
index 46daf203c..36301264c 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -109,16 +109,18 @@ type PrivacySettings struct {
}
type TeamSettings struct {
- MaxUsersPerTeam int
- AllowPublicLink bool
- AllowValetDefault bool
- TermsLink string
- PrivacyLink string
- AboutLink string
- HelpLink string
- ReportProblemLink string
- TourLink string
- DefaultThemeColor string
+ MaxUsersPerTeam int
+ AllowPublicLink bool
+ AllowValetDefault bool
+ TermsLink string
+ PrivacyLink string
+ AboutLink string
+ HelpLink string
+ ReportProblemLink string
+ TourLink string
+ DefaultThemeColor string
+ DisableTeamCreation bool
+ RestrictCreationToDomains string
}
type Config struct {