2013-03-14 18:26:12 -04:00
|
|
|
class Admin::DashboardController < Admin::AdminController
|
|
|
|
|
|
|
|
def index
|
2013-05-14 16:17:17 -04:00
|
|
|
# see https://github.com/rails/rails/issues/8167
|
|
|
|
# TODO: after upgrading to Rails 4, try to remove "if cache_classes"
|
|
|
|
if Discourse::Application.config.cache_classes
|
|
|
|
dashboard_data = Rails.cache.fetch("admin-dashboard-data-#{Discourse::VERSION::STRING}", expires_in: 1.hour) do
|
|
|
|
AdminDashboardData.fetch_all.as_json
|
|
|
|
end
|
|
|
|
render json: dashboard_data
|
|
|
|
else
|
|
|
|
render_json_dump AdminDashboardData.fetch_all
|
|
|
|
end
|
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
|