summaryrefslogtreecommitdiffstats
path: root/app/command_invite_people.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 /app/command_invite_people.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 'app/command_invite_people.go')
-rw-r--r--app/command_invite_people.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/command_invite_people.go b/app/command_invite_people.go
index e5ff5a316..c3dc4f469 100644
--- a/app/command_invite_people.go
+++ b/app/command_invite_people.go
@@ -28,7 +28,7 @@ func (me *InvitePeopleProvider) GetTrigger() string {
func (me *InvitePeopleProvider) GetCommand(a *App, T goi18n.TranslateFunc) *model.Command {
autoComplete := true
- if !a.Config().EmailSettings.SendEmailNotifications || !a.Config().TeamSettings.EnableUserCreation {
+ if !a.Config().EmailSettings.SendEmailNotifications || !*a.Config().TeamSettings.EnableUserCreation {
autoComplete = false
}
return &model.Command{
@@ -45,7 +45,7 @@ func (me *InvitePeopleProvider) DoCommand(a *App, args *model.CommandArgs, messa
return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command.invite_people.email_off")}
}
- if !a.Config().TeamSettings.EnableUserCreation {
+ if !*a.Config().TeamSettings.EnableUserCreation {
return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command.invite_people.invite_off")}
}