summaryrefslogtreecommitdiffstats
path: root/model/config.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-04-11 13:45:03 -0400
committerChristopher Speller <crspeller@gmail.com>2016-04-11 13:45:03 -0400
commit49ab8b216191749bd39694d79f687a84ad24adf0 (patch)
tree27b4966d437b15ddcd8d420b8a1afc1881455c13 /model/config.go
parent5b96ad59c502d435dbca95950c4590a575b2c5b9 (diff)
downloadchat-49ab8b216191749bd39694d79f687a84ad24adf0.tar.gz
chat-49ab8b216191749bd39694d79f687a84ad24adf0.tar.bz2
chat-49ab8b216191749bd39694d79f687a84ad24adf0.zip
Add custom branding functionality (#2667)
Diffstat (limited to 'model/config.go')
-rw-r--r--model/config.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/model/config.go b/model/config.go
index a8974359d..26c71d07f 100644
--- a/model/config.go
+++ b/model/config.go
@@ -158,6 +158,8 @@ type TeamSettings struct {
RestrictCreationToDomains string
RestrictTeamNames *bool
EnableTeamListing *bool
+ EnableCustomBrand *bool
+ CustomBrandText *string
}
type LdapSettings struct {
@@ -296,6 +298,16 @@ func (o *Config) SetDefaults() {
*o.TeamSettings.EnableTeamListing = false
}
+ if o.TeamSettings.EnableCustomBrand == nil {
+ o.TeamSettings.EnableCustomBrand = new(bool)
+ *o.TeamSettings.EnableCustomBrand = false
+ }
+
+ if o.TeamSettings.CustomBrandText == nil {
+ o.TeamSettings.CustomBrandText = new(string)
+ *o.TeamSettings.CustomBrandText = ""
+ }
+
if o.EmailSettings.EnableSignInWithEmail == nil {
o.EmailSettings.EnableSignInWithEmail = new(bool)