summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/platform/einterfaces
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mattermost/platform/einterfaces')
-rw-r--r--vendor/github.com/mattermost/platform/einterfaces/brand.go24
-rw-r--r--vendor/github.com/mattermost/platform/einterfaces/compliance.go23
-rw-r--r--vendor/github.com/mattermost/platform/einterfaces/mfa.go25
3 files changed, 72 insertions, 0 deletions
diff --git a/vendor/github.com/mattermost/platform/einterfaces/brand.go b/vendor/github.com/mattermost/platform/einterfaces/brand.go
new file mode 100644
index 00000000..7c15659b
--- /dev/null
+++ b/vendor/github.com/mattermost/platform/einterfaces/brand.go
@@ -0,0 +1,24 @@
+// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package einterfaces
+
+import (
+ "github.com/mattermost/platform/model"
+ "mime/multipart"
+)
+
+type BrandInterface interface {
+ SaveBrandImage(*multipart.FileHeader) *model.AppError
+ GetBrandImage() ([]byte, *model.AppError)
+}
+
+var theBrandInterface BrandInterface
+
+func RegisterBrandInterface(newInterface BrandInterface) {
+ theBrandInterface = newInterface
+}
+
+func GetBrandInterface() BrandInterface {
+ return theBrandInterface
+}
diff --git a/vendor/github.com/mattermost/platform/einterfaces/compliance.go b/vendor/github.com/mattermost/platform/einterfaces/compliance.go
new file mode 100644
index 00000000..2e72c67d
--- /dev/null
+++ b/vendor/github.com/mattermost/platform/einterfaces/compliance.go
@@ -0,0 +1,23 @@
+// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package einterfaces
+
+import (
+ "github.com/mattermost/platform/model"
+)
+
+type ComplianceInterface interface {
+ StartComplianceDailyJob()
+ RunComplianceJob(job *model.Compliance) *model.AppError
+}
+
+var theComplianceInterface ComplianceInterface
+
+func RegisterComplianceInterface(newInterface ComplianceInterface) {
+ theComplianceInterface = newInterface
+}
+
+func GetComplianceInterface() ComplianceInterface {
+ return theComplianceInterface
+}
diff --git a/vendor/github.com/mattermost/platform/einterfaces/mfa.go b/vendor/github.com/mattermost/platform/einterfaces/mfa.go
new file mode 100644
index 00000000..25f3ed91
--- /dev/null
+++ b/vendor/github.com/mattermost/platform/einterfaces/mfa.go
@@ -0,0 +1,25 @@
+// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package einterfaces
+
+import (
+ "github.com/mattermost/platform/model"
+)
+
+type MfaInterface interface {
+ GenerateQrCode(user *model.User) ([]byte, *model.AppError)
+ Activate(user *model.User, token string) *model.AppError
+ Deactivate(userId string) *model.AppError
+ ValidateToken(secret, token string) (bool, *model.AppError)
+}
+
+var theMfaInterface MfaInterface
+
+func RegisterMfaInterface(newInterface MfaInterface) {
+ theMfaInterface = newInterface
+}
+
+func GetMfaInterface() MfaInterface {
+ return theMfaInterface
+}