This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/controllers/admin/dashboard_controller.rb

12 lines
265 B
Ruby

class Admin::DashboardController < Admin::AdminController
caches_action :index, expires_in: 1.hour
def index
render_json_dump(AdminDashboardData.fetch_all)
end
def problems
render_json_dump({problems: AdminDashboardData.fetch_problems})
end
end