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

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