mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:57:36 +08:00
10 lines
215 B
Ruby
10 lines
215 B
Ruby
class SearchPostSerializer < BasicPostSerializer
|
|
has_one :topic, serializer: SearchTopicListItemSerializer
|
|
|
|
attributes :like_count, :blurb, :post_number
|
|
|
|
def blurb
|
|
options[:result].blurb(object)
|
|
end
|
|
end
|