From a7d93827d1708eb589b0ef1c19ac4e0d020c417c Mon Sep 17 00:00:00 2001 From: aj Date: Mon, 14 Aug 2017 20:04:44 +0000 Subject: [PATCH] typo fix --- js/controllers/homeController.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/js/controllers/homeController.js b/js/controllers/homeController.js index 23c8dfd..412a467 100644 --- a/js/controllers/homeController.js +++ b/js/controllers/homeController.js @@ -1,5 +1,5 @@ app.controller('HomeController', [ - '$rootScope', '$scope', 'Auth', 'localStorageService', '$location', 'azp@oauth.org' + '$rootScope', '$scope', 'Auth', 'localStorageService', '$location', 'azp@oauth3.org' , function ($rootScope, $scope, Auth, localStorageService, $location, Oauth3) { var vm = this; @@ -12,11 +12,9 @@ app.controller('HomeController', [ $location.path('/splash-page'); }; - vm.userName = function(profile){ profile = Auth.getProfile(); return profile.email; }; - }]);