mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:29:22 +08:00
12 lines
266 B
Ruby
12 lines
266 B
Ruby
class FlaggedTopicSerializer < ActiveModel::Serializer
|
|
attributes :id,
|
|
:title,
|
|
:fancy_title,
|
|
:slug,
|
|
:archived,
|
|
:closed,
|
|
:visible,
|
|
:archetype,
|
|
:relative_url
|
|
end
|