mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
10 lines
274 B
Ruby
10 lines
274 B
Ruby
class DiscourseVersionCheckSerializer < ApplicationSerializer
|
|
attributes :latest_version,
|
|
:critical_updates,
|
|
:installed_version,
|
|
:installed_sha,
|
|
:missing_versions_count,
|
|
:updated_at
|
|
|
|
self.root = false
|
|
end
|