2013-03-14 18:26:12 -04:00
|
|
|
class Admin::DashboardController < Admin::AdminController
|
|
|
|
|
2013-03-20 13:54:32 -04:00
|
|
|
caches_action :index, expires_in: 1.hour
|
|
|
|
|
2013-03-14 18:26:12 -04:00
|
|
|
def index
|
2013-03-29 15:48:26 -04:00
|
|
|
render_json_dump(AdminDashboardData.fetch_all)
|
2013-03-14 18:26:12 -04:00
|
|
|
end
|
|
|
|
|
2013-03-29 15:48:26 -04:00
|
|
|
def problems
|
|
|
|
render_json_dump({problems: AdminDashboardData.fetch_problems})
|
|
|
|
end
|
2013-03-14 18:26:12 -04:00
|
|
|
end
|