2013-01-20 15:20:50 +04:00
|
|
|
class Admin::DashboardController < Admin::ApplicationController
|
2012-04-20 19:41:49 +03:00
|
|
|
def index
|
|
|
|
@projects = Project.order("created_at DESC").limit(10)
|
|
|
|
@users = User.order("created_at DESC").limit(10)
|
2012-11-21 12:45:15 +02:00
|
|
|
|
|
|
|
rescue Redis::InheritedError
|
|
|
|
@resque_accessible = false
|
2012-04-20 19:41:49 +03:00
|
|
|
end
|
|
|
|
end
|