mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
dashboard next: perf and UI tweaks
* cache CORE reports * adds backups/uploads section * few css tweaks
This commit is contained in:
@ -1,2 +1,9 @@
|
||||
require 'disk_space'
|
||||
class Admin::DashboardNextController < Admin::AdminController
|
||||
def index
|
||||
dashboard_data = AdminDashboardNextData.fetch_cached_stats || Jobs::DashboardNextStats.new.execute({})
|
||||
dashboard_data.merge!(version_check: DiscourseUpdates.check_version.as_json) if SiteSetting.version_checks?
|
||||
dashboard_data[:disk_space] = DiskSpace.cached_stats
|
||||
render json: dashboard_data
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user