debian-mirror-gitlab/app/controllers/admin/dashboard_controller.rb

8 lines
178 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class Admin::DashboardController < Admin::ApplicationController
def index
2015-04-26 12:48:37 +05:30
@projects = Project.limit(10)
@users = User.limit(10)
@groups = Group.limit(10)
2014-09-02 18:07:02 +05:30
end
end