summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go')
-rw-r--r--vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go b/vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go
new file mode 100644
index 00000000..3afe961e
--- /dev/null
+++ b/vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go
@@ -0,0 +1,15 @@
+// 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 MfaInterface interface {
+ GenerateSecret(user *model.User) (string, []byte, *model.AppError)
+ Activate(user *model.User, token string) *model.AppError
+ Deactivate(userId string) *model.AppError
+ ValidateToken(secret, token string) (bool, *model.AppError)
+}