19 lines
439 B
JavaScript
Raw Normal View History

2017-08-10 11:36:59 -06:00
app.controller('HomeController', ['$scope', 'Auth', 'localStorageService', '$location', '$rootScope', function ($scope, Auth, localStorageService, $location, $rootScope) {
2017-08-09 12:41:43 -06:00
var vm = this;
2017-08-08 22:23:19 -06:00
2017-08-11 13:21:35 -06:00
vm.notification = true;
2017-08-09 12:41:43 -06:00
vm.signOut = function () {
localStorageService.remove('userAuth');
$location.path('/splash-page');
2017-08-10 11:36:59 -06:00
};
2017-08-09 11:28:36 -06:00
2017-08-11 09:09:41 -06:00
vm.userName = function(profile){
profile = Auth.getProfile();
return profile.email;
};
2017-08-10 11:36:59 -06:00
2017-08-08 00:35:11 -06:00
2017-08-08 14:54:25 -06:00
}]);