2017-08-08 22:23:19 -06:00
|
|
|
app.controller('HomeController', ['$scope', 'Auth', 'localStorageService', '$location', function ($scope, Auth, localStorageService, $location) {
|
2017-08-09 11:28:36 -06:00
|
|
|
var vm = this;
|
2017-08-08 22:23:19 -06:00
|
|
|
|
2017-08-09 11:28:36 -06:00
|
|
|
vm.signOut = function () {
|
|
|
|
|
localStorageService.remove('userAuth');
|
|
|
|
|
$location.path('/splash-page');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function userAuth() {
|
|
|
|
|
return JSON.parse(localStorageService.get('userAuth'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$scope.$watch(Auth.isLoggedIn, function (value, oldValue) {
|
|
|
|
|
if (!value && !oldValue) {
|
|
|
|
|
$location.path('/splash-page');
|
|
|
|
|
}
|
|
|
|
|
}, true);
|
2017-08-08 00:35:11 -06:00
|
|
|
|
2017-08-08 14:54:25 -06:00
|
|
|
}]);
|