summaryrefslogtreecommitdiffstats
path: root/utils/config.go
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-08-25 14:28:02 -0700
committer=Corey Hulen <corey@hulen.com>2015-08-25 14:28:02 -0700
commitd132de4400c181d69c8d560a5f1e33e95e6d8586 (patch)
treee91a297f73f2ae7dc2b4a3ee657a1081594130df /utils/config.go
parent3ba4914b49a001fd3b8318ee9521afbb2e6ca3e4 (diff)
downloadchat-d132de4400c181d69c8d560a5f1e33e95e6d8586.tar.gz
chat-d132de4400c181d69c8d560a5f1e33e95e6d8586.tar.bz2
chat-d132de4400c181d69c8d560a5f1e33e95e6d8586.zip
Fixes PL-1 added ability to disable team creation
Diffstat (limited to 'utils/config.go')
-rw-r--r--utils/config.go21
1 files changed, 11 insertions, 10 deletions
diff --git a/utils/config.go b/utils/config.go
index 46daf203c..9e5de93bf 100644
--- a/utils/config.go
+++ b/utils/config.go
@@ -109,16 +109,17 @@ 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
}
type Config struct {