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