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

8 lines
178 B
Ruby
Raw Normal View History

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