2019-05-02 14:57:12 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-03-15 06:26:12 +08:00
|
|
|
class Admin::DashboardController < Admin::AdminController
|
|
|
|
def index
|
2019-04-01 18:39:49 +08:00
|
|
|
data = AdminDashboardIndexData.fetch_cached_stats
|
|
|
|
|
|
|
|
if SiteSetting.version_checks?
|
|
|
|
data.merge!(version_check: DiscourseUpdates.check_version.as_json)
|
|
|
|
end
|
|
|
|
|
|
|
|
render json: data
|
|
|
|
end
|
|
|
|
|
|
|
|
def moderation; end
|
|
|
|
def security; end
|
|
|
|
def reports; end
|
|
|
|
|
|
|
|
def general
|
|
|
|
render json: AdminDashboardGeneralData.fetch_cached_stats
|
2013-03-15 06:26:12 +08:00
|
|
|
end
|
|
|
|
|
2013-03-30 03:48:26 +08:00
|
|
|
def problems
|
2018-01-11 14:46:10 +08:00
|
|
|
render_json_dump(problems: AdminDashboardData.fetch_problems(check_force_https: request.ssl?))
|
2013-03-30 03:48:26 +08:00
|
|
|
end
|
2013-07-08 10:25:38 +08:00
|
|
|
end
|