mirror of
https://github.com/discourse/discourse.git
synced 2026-03-03 23:54:20 +08:00
22 lines
361 B
Ruby
22 lines
361 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SimilarTopicSerializer < ApplicationSerializer
|
|
has_one :topic, serializer: TopicListItemSerializer, embed: :ids
|
|
attributes :id, :blurb, :created_at, :url
|
|
|
|
def id
|
|
object.topic.id
|
|
end
|
|
|
|
def blurb
|
|
object.blurb
|
|
end
|
|
|
|
def url
|
|
object.topic.url
|
|
end
|
|
|
|
def created_at
|
|
object.topic.created_at
|
|
end
|
|
end
|