2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-06-24 15:08:22 -04:00
|
|
|
class SimilarTopicSerializer < ApplicationSerializer
|
|
|
|
has_one :topic, serializer: TopicListItemSerializer, embed: :ids
|
2015-06-24 15:13:36 -04:00
|
|
|
attributes :id, :blurb, :created_at, :url
|
2015-06-24 15:08:22 -04:00
|
|
|
|
|
|
|
def id
|
|
|
|
object.topic.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def blurb
|
|
|
|
object.blurb
|
|
|
|
end
|
|
|
|
|
2015-06-24 15:13:36 -04:00
|
|
|
def url
|
|
|
|
object.topic.url
|
|
|
|
end
|
|
|
|
|
2015-06-24 15:08:22 -04:00
|
|
|
def created_at
|
|
|
|
object.topic.created_at
|
|
|
|
end
|
|
|
|
end
|