mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
12 lines
227 B
Ruby
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
|