Remove obsolete pusher handling code from store

Removed code was checking if we should handle a pusher event, ie. if the
event is associated with the user, or if we already have a record
associated with the event. We don't need the check now, because we no
longer use the common channel.
This commit is contained in:
Piotr Sarnacki 2015-11-30 09:51:34 +01:00
parent b31831d535
commit 9b4d5c5b4e

View File

@ -19,22 +19,6 @@ Store = DS.Store.extend
canHandleEvent: (event, data) ->
[name, type] = event.split(':')
auth = @get('auth')
if event != 'job:log' && auth.get('signedIn') &&
!config.pro && !config.enterprise
# if recent repos hasn't been opened yet, we can safely
# drop any events that doesn't belong to repos owned by
# the logged in user and that aren't related to any
# repositories that are already opened
permissions = auth.get('permissions')
if name == 'job'
id = data.job.repository_id
else if name == 'build'
id = data.repository.id
return @hasRecordForId('repo', id) || permissions.contains(id)
for name, callback of @get('pusherEventHandlerGuards')
unless callback(event, data)