From 2a2af0e390e0323e02919598881783f38131b5ee Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 24 Oct 2017 09:00:05 -0700 Subject: eliminate more utils.Cfg references (#7701) --- api4/user_test.go | 26 -------------------------- api4/webrtc.go | 3 +-- 2 files changed, 1 insertion(+), 28 deletions(-) (limited to 'api4') diff --git a/api4/user_test.go b/api4/user_test.go index 974156ae5..eee9aa8a2 100644 --- a/api4/user_test.go +++ b/api4/user_test.go @@ -1517,32 +1517,6 @@ func TestUpdateUserMfa(t *testing.T) { _, resp := Client.UpdateUserMfa(th.BasicUser.Id, "12345", false) CheckForbiddenStatus(t, resp) - - /* - team := model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN} - rteam, _ := Client.CreateTeam(&team) - - user := model.User{Email: strings.ToLower(model.NewId()) + "success+test@simulator.amazonses.com", Nickname: "Corey Hulen", Password: "passwd1"} - ruser, _ := Client.CreateUser(&user) - th.LinkUserToTeam(ruser, rteam) - store.Must(app.Srv.Store.User().VerifyEmail(ruser.Id)) - - Client.Logout() - _, resp := Client.UpdateUserMfa(ruser.Id, "12334", true) - CheckUnauthorizedStatus(t, resp) - - Client.Login(user.Email, user.Password) - _, resp = Client.UpdateUserMfa("fail", "56789", false) - CheckBadRequestStatus(t, resp) - - _, resp = Client.UpdateUserMfa(ruser.Id, "", true) - CheckErrorMessage(t, resp, "api.context.invalid_body_param.app_error") - - *utils.Cfg.ServiceSettings.EnableMultifactorAuthentication = true - - _, resp = Client.UpdateUserMfa(ruser.Id, "123456", false) - CheckNotImplementedStatus(t, resp) - */ } func TestCheckUserMfa(t *testing.T) { diff --git a/api4/webrtc.go b/api4/webrtc.go index bf418d5e8..9fcc18ff9 100644 --- a/api4/webrtc.go +++ b/api4/webrtc.go @@ -7,7 +7,6 @@ import ( "net/http" l4g "github.com/alecthomas/log4go" - "github.com/mattermost/mattermost-server/app" "github.com/mattermost/mattermost-server/utils" ) @@ -18,7 +17,7 @@ func (api *API) InitWebrtc() { } func webrtcToken(c *Context, w http.ResponseWriter, r *http.Request) { - result, err := app.GetWebrtcInfoForSession(c.Session.Id) + result, err := c.App.GetWebrtcInfoForSession(c.Session.Id) if err != nil { c.Err = err -- cgit v1.2.3-1-g7c22