From 3f44925d7e438ef42e3cdb7bc8cad3bd1ee545a7 Mon Sep 17 00:00:00 2001 From: Chaim Lev Ari Date: Wed, 16 Jan 2019 17:37:50 +0200 Subject: [PATCH] fix(auth): fix typo - missing function --- app/portainer/views/auth/authController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/portainer/views/auth/authController.js b/app/portainer/views/auth/authController.js index 30ca6b42c..fb8968e48 100644 --- a/app/portainer/views/auth/authController.js +++ b/app/portainer/views/auth/authController.js @@ -111,7 +111,7 @@ function (urlHelper, $q, $scope, $state, $stateParams, $sanitize, Authentication } function oAuthLogin(code) { - return Authentication.oAuthLogin(code) + return Authentication.OAuthLogin(code) .then(function success() { urlHelper.cleanParameters(); $state.go('portainer.home');