mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
13 lines
370 B
Ruby
13 lines
370 B
Ruby
class Admin::DashboardController < Admin::AdminController
|
|
|
|
def index
|
|
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
|
|
end
|
|
|
|
def problems
|
|
render_json_dump({problems: AdminDashboardData.fetch_problems})
|
|
end
|
|
end
|