mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
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
|