mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 04:34:13 -06:00
13 lines
208 B
Ruby
13 lines
208 B
Ruby
class SearchTopicListItemSerializer < ListableTopicSerializer
|
|
attributes :tags,
|
|
:category_id
|
|
|
|
def include_tags?
|
|
SiteSetting.tagging_enabled
|
|
end
|
|
|
|
def tags
|
|
object.tags.map(&:name)
|
|
end
|
|
end
|