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, 0 insertions, 15 deletions
diff --git a/vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go b/vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go
deleted file mode 100644
index 3afe961e..00000000
--- a/vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// 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)
-}