gitlab-org--gitlab-foss/app/controllers/admin/dashboard_controller.rb

8 lines
253 B
Ruby
Raw Normal View History

class Admin::DashboardController < Admin::ApplicationController
2012-04-20 16:41:49 +00:00
def index
@projects = Project.order("created_at DESC").limit(10)
@users = User.order("created_at DESC").limit(10)
@groups = Group.order("created_at DESC").limit(10)
2012-04-20 16:41:49 +00:00
end
end