walnut_launchpad.html/js/controllers/HomeController.js

19 rivejä
439 B
JavaScript

app.controller('HomeController', ['$scope', 'Auth', 'localStorageService', '$location', '$rootScope', function ($scope, Auth, localStorageService, $location, $rootScope) {
var vm = this;
vm.notification = true;
vm.signOut = function () {
localStorageService.remove('userAuth');
$location.path('/splash-page');
};
vm.userName = function(profile){
profile = Auth.getProfile();
return profile.email;
};
}]);