diff --git a/js/services/auth.js b/js/services/auth.js index f6cbb5f..16afea1 100644 --- a/js/services/auth.js +++ b/js/services/auth.js @@ -1,6 +1,9 @@ -app.factory('Auth', ['localStorageService', '$location', '$rootScope', function(localStorageService, $location, $rootScope) { +app.factory('Auth', [ + '$rootScope', 'localStorageService', '$location', 'azp@oauth3.org' +, function($rootScope, localStorageService, $location, Oauth3) { var user; - return{ + + return { setUser: function(currentUser){ user = currentUser; if (redirectedURL === '/splash-page') { @@ -8,8 +11,10 @@ app.factory('Auth', ['localStorageService', '$location', '$rootScope', function( } else { $location.path('/' + redirectedURL); } + user = localStorageService.set('userAuth', JSON.stringify(currentUser)); }, isLoggedIn: function(){ + // TODO check sessions instead user = JSON.parse(localStorageService.get('userAuth')); return (user) ? user : false; },