Current section

Files

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

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

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