
We sometimes miss pusher updates, which started to be more common lately. Until we investigate what's going on, this should be a good workaround for keeping UI in sync with the DB.
9 lines
216 B
CoffeeScript
9 lines
216 B
CoffeeScript
`import BasicView from 'travis/views/basic'`
|
|
`import Polling from 'travis/mixins/polling'`
|
|
|
|
View = BasicView.extend Polling,
|
|
pollHook: (store) ->
|
|
@get('controller.store').find('job', {})
|
|
|
|
`export default View`
|