这个提交包含在:
aj 2017-08-14 20:04:44 +00:00
父节点 b3c6a7c54f
当前提交 a7d93827d1

查看文件

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