mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 08:57:10 -06:00
37252c1a5e
- support for avatars - support for topic/post/user type in reports - improved totals row UI - minor css tweaks
15 lines
316 B
Ruby
15 lines
316 B
Ruby
class AdminDashboardNextIndexData < AdminDashboardNextData
|
|
def get_json
|
|
{
|
|
updated_at: Time.zone.now.as_json
|
|
}
|
|
end
|
|
|
|
def self.stats_cache_key
|
|
"index-dashboard-data-#{Report::SCHEMA_VERSION}"
|
|
end
|
|
|
|
# TODO: problems should be loaded from this model
|
|
# and not from a separate model/route
|
|
end
|