Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dashboard_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c491e5c75501e259c300ae4586ff6464337b87e0 (plain)
1
2
3
4
5
6
7
class Admin::DashboardController < Admin::ApplicationController
  def index
    @projects = Project.limit(10)
    @users = User.limit(10)
    @groups = Group.limit(10)
  end
end