summaryrefslogtreecommitdiff
path: root/app/controllers/admin/dashboard_controller.rb
blob: 05e749c00c03cbb666bcfad731ea906698a35753 (plain)
1
2
3
4
5
6
7
class Admin::DashboardController < Admin::ApplicationController
  def index
    @projects = Project.without_deleted.with_route.limit(10)
    @users = User.limit(10)
    @groups = Group.with_route.limit(10)
  end
end