mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 04:43:43 +08:00
11 lines
168 B
Ruby
11 lines
168 B
Ruby
class CategoryTopicSerializer < BasicTopicSerializer
|
|
|
|
attributes :slug,
|
|
:visible,
|
|
:closed,
|
|
:archived
|
|
|
|
has_one :category
|
|
|
|
end
|