mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-25 14:37:59 +01:00
Check if logged before checking admin
This commit is contained in:
parent
40122a9446
commit
7bc8852043
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
||||||
module.exports = angular.module('ponyfm').factory('auth', [
|
module.exports = angular.module('ponyfm').factory('auth', [
|
||||||
'$rootScope'
|
'$rootScope'
|
||||||
($rootScope) ->
|
($rootScope) ->
|
||||||
data: {isLogged: window.pfm.auth.isLogged, user: window.pfm.auth.user, isAdmin: (window.pfm.auth.user.roles[0] && window.pfm.auth.user.roles[0].id == 2)}
|
data: {isLogged: window.pfm.auth.isLogged, user: window.pfm.auth.user, isAdmin: (window.pfm.auth.isLogged && window.pfm.auth.user.roles[0] && window.pfm.auth.user.roles[0].id == 2)}
|
||||||
login: (email, password, remember) ->
|
login: (email, password, remember) ->
|
||||||
def = new $.Deferred()
|
def = new $.Deferred()
|
||||||
$.post('/api/web/auth/login', {email: email, password: password, remember: remember})
|
$.post('/api/web/auth/login', {email: email, password: password, remember: remember})
|
||||||
|
|
Loading…
Reference in a new issue