mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:18:06 +08: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
|