mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 09:17:30 +08:00
10 lines
258 B
Ruby
10 lines
258 B
Ruby
require 'disk_space'
|
|
|
|
class Admin::DashboardNextController < Admin::AdminController
|
|
def index
|
|
dashboard_data = AdminDashboardNextData.fetch_cached_stats
|
|
dashboard_data[:disk_space] = DiskSpace.cached_stats
|
|
render json: dashboard_data
|
|
end
|
|
end
|