Basic delayed jobs queue display and rubocop fixes

This commit is contained in:
Andres Keskküla 2014-11-12 18:31:21 +02:00
parent c7b58d8b06
commit f4ebbbdc95
5 changed files with 36 additions and 5 deletions

View file

@ -0,0 +1,5 @@
class Admin::DelayedJobsController < AdminController
def index
@jobs = Delayed::Job.all
end
end