discourse/app/serializers/search_topic_list_item_serializer.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
234 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class SearchTopicListItemSerializer < ListableTopicSerializer
2018-02-14 02:16:25 +05:30
include TopicTagsMixin
2018-02-14 02:16:25 +05:30
attributes :category_id
def include_image_url?
false
end
def include_thumbnails?
false
end
end