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/models/admin_dashboard_next_general_data.rb
T
2018-09-13 17:35:54 +02:00

12 lines
227 B
Ruby

class AdminDashboardNextGeneralData < AdminDashboardNextData
def get_json
{
updated_at: Time.zone.now.as_json
}
end
def self.stats_cache_key
"general-dashboard-data-#{Report::SCHEMA_VERSION}"
end
end