summaryrefslogtreecommitdiffstats
path: root/einterfaces
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2018-06-02 06:33:59 +0800
committerGitHub <noreply@github.com>2018-06-02 06:33:59 +0800
commit312edbe5315e97dc25857fc2590266734056af70 (patch)
tree4dc477389e10aa2078651c99bd1e7597276c0e2a /einterfaces
parentebdceb8e529810cd89599b8fbfda0157a659f3b5 (diff)
downloadchat-312edbe5315e97dc25857fc2590266734056af70.tar.gz
chat-312edbe5315e97dc25857fc2590266734056af70.tar.bz2
chat-312edbe5315e97dc25857fc2590266734056af70.zip
[MM-10718] Move custom branding to TE (#8871)
* move custom branding to TE * move brand's enterprise code to server and remove BrandInterface
Diffstat (limited to 'einterfaces')
-rw-r--r--einterfaces/brand.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/einterfaces/brand.go b/einterfaces/brand.go
deleted file mode 100644
index 11e7d4e42..000000000
--- a/einterfaces/brand.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 (
- "mime/multipart"
-
- "github.com/mattermost/mattermost-server/model"
-)
-
-type BrandInterface interface {
- SaveBrandImage(*multipart.FileHeader) *model.AppError
- GetBrandImage() ([]byte, *model.AppError)
-}