mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 04:18:23 +00:00
16 lines
234 B
Ruby
16 lines
234 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SearchTopicListItemSerializer < ListableTopicSerializer
|
|
include TopicTagsMixin
|
|
|
|
attributes :category_id
|
|
|
|
def include_image_url?
|
|
false
|
|
end
|
|
|
|
def include_thumbnails?
|
|
false
|
|
end
|
|
end
|