mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 02:09:54 +08:00
10 lines
209 B
Ruby
10 lines
209 B
Ruby
class SearchPostSerializer < BasicPostSerializer
|
|
has_one :topic, serializer: TopicListItemSerializer
|
|
|
|
attributes :like_count, :blurb, :post_number
|
|
|
|
def blurb
|
|
options[:result].blurb(object)
|
|
end
|
|
end
|