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; }; - }]);