blob: 0db516d752706fc0f6fbcdfa006dff725b68855c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package einterfaces
import "github.com/mattermost/mattermost-server/model"
type AccountMigrationInterface interface {
MigrateToLdap(fromAuthService string, forignUserFieldNameToMatch string, force bool) *model.AppError
}
|