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-19 23:18:00 -04:00
|
|
|
render_json_dump(AdminDashboardData.fetch)
|
2013-03-14 18:26:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|