gitlabhq/app/controllers/admin/dashboard_controller.rb

9 lines
262 B
Ruby
Raw Normal View History

class Admin::DashboardController < AdminController
2012-04-20 18:41:49 +02:00
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