summaryrefslogtreecommitdiffstats
path: root/einterfaces
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-06-06 11:42:53 -0700
committerJoram Wilander <jwawilander@gmail.com>2017-06-06 14:42:53 -0400
commit04088009f843c863d9f54b2a2c5b45b7f7e3ba9e (patch)
tree7995eae942b2868783d2b6951bb7ebe7ff445078 /einterfaces
parent78ebf19dc1146be12ad73426802b24e87188cc72 (diff)
downloadchat-04088009f843c863d9f54b2a2c5b45b7f7e3ba9e.tar.gz
chat-04088009f843c863d9f54b2a2c5b45b7f7e3ba9e.tar.bz2
chat-04088009f843c863d9f54b2a2c5b45b7f7e3ba9e.zip
Adding force flag to migrate auth command (#6593)
Diffstat (limited to 'einterfaces')
-rw-r--r--einterfaces/account_migration.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/einterfaces/account_migration.go b/einterfaces/account_migration.go
index a52b5e348..c9534ab68 100644
--- a/einterfaces/account_migration.go
+++ b/einterfaces/account_migration.go
@@ -6,7 +6,7 @@ package einterfaces
import "github.com/mattermost/platform/model"
type AccountMigrationInterface interface {
- MigrateToLdap(fromAuthService string, forignUserFieldNameToMatch string) *model.AppError
+ MigrateToLdap(fromAuthService string, forignUserFieldNameToMatch string, force bool) *model.AppError
}
var theAccountMigrationInterface AccountMigrationInterface