mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 01:58:29 +08:00
![Joffrey JAFFEUX](/assets/img/avatar_default.png)
- 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
|