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

  rescue Redis::InheritedError
    @resque_accessible = false
  end
end