mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 10:29:35 +08:00
12 lines
219 B
Ruby
12 lines
219 B
Ruby
class AdminDashboardGeneralData < AdminDashboardData
|
|
def get_json
|
|
{
|
|
updated_at: Time.zone.now.as_json
|
|
}
|
|
end
|
|
|
|
def self.stats_cache_key
|
|
"general-dashboard-data-#{Report::SCHEMA_VERSION}"
|
|
end
|
|
end
|