From 5aab158c0b0db64b6136fe2fdaca8b8e9e3bd811 Mon Sep 17 00:00:00 2001 From: Wim Date: Fri, 9 Feb 2018 00:11:04 +0100 Subject: Update vendor (github.com/mattermost) --- .../mattermost/mattermost-server/einterfaces/mfa.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go (limited to 'vendor/github.com/mattermost/mattermost-server/einterfaces/mfa.go') 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) +} -- cgit v1.2.3