Fix getting push access data on settings reload
This commit is contained in:
parent
1570935099
commit
13ce7f88bd
|
@ -54,6 +54,12 @@ User = Model.extend
|
|||
permissions
|
||||
).property()
|
||||
|
||||
# TODO: permissions are loading asynchronously at the moment, so this should
|
||||
# be the way to return them for all types:
|
||||
pushPermissionsPromise: (->
|
||||
@get('_rawPermissions').then (data) => data.pull
|
||||
).property()
|
||||
|
||||
hasAccessToRepo: (repo) ->
|
||||
id = if repo.get then repo.get('id') else repo
|
||||
|
||||
|
|
|
@ -43,10 +43,11 @@ Route = TravisRoute.extend
|
|||
);
|
||||
|
||||
hasPushAccess: ->
|
||||
repoId = parseInt @modelFor('repo').get('id')
|
||||
repoId = parseInt(@modelFor('repo').get('id'))
|
||||
|
||||
@auth.get('currentUser').get('pushPermissions').filter (item) ->
|
||||
item == repoId
|
||||
@auth.get('currentUser').get('pushPermissionsPromise').then (permissions) ->
|
||||
permissions.filter (item) ->
|
||||
item == repoId
|
||||
|
||||
model: () ->
|
||||
return Ember.RSVP.hash({
|
||||
|
|
Loading…
Reference in New Issue
Block a user