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