summaryrefslogtreecommitdiffstats
path: root/api4/brand.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/brand.go')
-rw-r--r--api4/brand.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/api4/brand.go b/api4/brand.go
index ee48953dd..f182e1070 100644
--- a/api4/brand.go
+++ b/api4/brand.go
@@ -6,14 +6,10 @@ package api4
import (
"net/http"
- l4g "github.com/alecthomas/log4go"
"github.com/mattermost/mattermost-server/model"
- "github.com/mattermost/mattermost-server/utils"
)
func (api *API) InitBrand() {
- l4g.Debug(utils.T("api.brand.init.debug"))
-
api.BaseRoutes.Brand.Handle("/image", api.ApiHandlerTrustRequester(getBrandImage)).Methods("GET")
api.BaseRoutes.Brand.Handle("/image", api.ApiSessionRequired(uploadBrandImage)).Methods("POST")
}