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

8 lines
200 B
Ruby
Raw Normal View History

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