summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-08-25 14:40:16 -0700
committer=Corey Hulen <corey@hulen.com>2015-08-25 14:40:16 -0700
commit67bc12e4b72960ce5413a6267f11d505d581f1e7 (patch)
tree6ce737cfdbf585a8a96370266dabe6178ac126b8 /utils
parentd132de4400c181d69c8d560a5f1e33e95e6d8586 (diff)
downloadchat-67bc12e4b72960ce5413a6267f11d505d581f1e7.tar.gz
chat-67bc12e4b72960ce5413a6267f11d505d581f1e7.tar.bz2
chat-67bc12e4b72960ce5413a6267f11d505d581f1e7.zip
Fixes PL-3 Restrict team creation to specific domains
Diffstat (limited to 'utils')
-rw-r--r--utils/config.go23
1 files changed, 12 insertions, 11 deletions
diff --git a/utils/config.go b/utils/config.go
index 9e5de93bf..36301264c 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -109,17 +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
- DisableTeamCreation bool
+ 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 {