Current section

Files

Jump to
exq_ui priv ember app controllers processes index.coffee
Raw

priv/ember/app/controllers/processes/index.coffee

IndexController = Ember.Controller.extend
actions:
clearProcesses: ->
self = this
jQuery.ajax({url: "#{window.exqNamespace}api/processes", type: "DELETE"}).done(->
self.store.findAll('process').forEach((p) ->
p.deleteRecord()
self.send('reloadStats')
)
)
`export default IndexController`