Current section

Files

Jump to
exq priv ember app controllers queues index.coffee
Raw

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

IndexController = Ember.Controller.extend
actions:
clearAll: ->
alert('clearAll')
deleteQueue: (queue) ->
if confirm("Are you sure you want to delete #{queue.id} and all its jobs?")
queue.deleteRecord()
queue.save().then (q) ->
this.send('reloadStats')
`export default IndexController`