Files
mattermost/einterfaces/mfa.go

16 lines
457 B
Go
Raw Normal View History

// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
2016-03-30 12:49:29 -04:00
// See License.txt for license information.
package einterfaces
import (
2017-09-06 23:05:10 -07:00
"github.com/mattermost/mattermost-server/model"
2016-03-30 12:49:29 -04:00
)
type MfaInterface interface {
GenerateSecret(user *model.User) (string, []byte, *model.AppError)
2016-03-30 12:49:29 -04:00
Activate(user *model.User, token string) *model.AppError
Deactivate(userId string) *model.AppError
ValidateToken(secret, token string) (bool, *model.AppError)
}