925183ed7a
Handles stuff that's shared across admin controllers.
9 lines
262 B
Ruby
9 lines
262 B
Ruby
class Admin::DashboardController < AdminController
|
|
def index
|
|
@workers = Resque.workers
|
|
@pending_jobs = Resque.size(:post_receive)
|
|
@projects = Project.order("created_at DESC").limit(10)
|
|
@users = User.order("created_at DESC").limit(10)
|
|
end
|
|
end
|