mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
11 lines
239 B
Ruby
11 lines
239 B
Ruby
|
class FlaggedTopicSerializer < ActiveModel::Serializer
|
||
|
attributes :id,
|
||
|
:title,
|
||
|
:slug,
|
||
|
:archived,
|
||
|
:closed,
|
||
|
:visible,
|
||
|
:archetype,
|
||
|
:relative_url
|
||
|
end
|