From dcf9e96a0b16530549168a7891ed8242663b5f28 Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 22 Sep 2017 12:54:27 -0500 Subject: remove global refs from api/api4 (#7496) --- web/web.go | 7 +++---- web/web_test.go | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) (limited to 'web') diff --git a/web/web.go b/web/web.go index 2f9e111bd..77a0c107a 100644 --- a/web/web.go +++ b/web/web.go @@ -11,16 +11,15 @@ import ( l4g "github.com/alecthomas/log4go" "github.com/mattermost/mattermost-server/api" - "github.com/mattermost/mattermost-server/app" "github.com/mattermost/mattermost-server/model" "github.com/mattermost/mattermost-server/utils" "github.com/mssola/user_agent" ) -func InitWeb() { +func Init(api3 *api.API) { l4g.Debug(utils.T("web.init.debug")) - mainrouter := app.Global().Srv.Router + mainrouter := api3.BaseRoutes.Root if *utils.Cfg.ServiceSettings.WebserverMode != "disabled" { staticDir, _ := utils.FindDir(model.CLIENT_DIR) @@ -36,7 +35,7 @@ func InitWeb() { mainrouter.PathPrefix("/static/plugins/").Handler(pluginHandler) mainrouter.PathPrefix("/static/").Handler(staticHandler) - mainrouter.Handle("/{anything:.*}", api.AppHandlerIndependent(root)).Methods("GET") + mainrouter.Handle("/{anything:.*}", api3.AppHandlerIndependent(root)).Methods("GET") } } diff --git a/web/web_test.go b/web/web_test.go index 2bf92151f..ba47f831a 100644 --- a/web/web_test.go +++ b/web/web_test.go @@ -27,9 +27,9 @@ func Setup() *app.App { a.InitStores() a.Srv.Router = api.NewRouter() a.StartServer() - api4.InitApi(a.Srv.Router, false) - api.InitApi(a.Srv.Router) - InitWeb() + api4.Init(a, a.Srv.Router, false) + api3 := api.Init(a, a.Srv.Router) + Init(api3) URL = "http://localhost" + *utils.Cfg.ServiceSettings.ListenAddress ApiClient = model.NewClient(URL) -- cgit v1.2.3-1-g7c22