FIX: Missing `url` attribute for suggested topics

This commit is contained in:
Robin Ward 2015-06-24 15:13:36 -04:00
parent 6422d5efbd
commit d7007207c9
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
class SimilarTopicSerializer < ApplicationSerializer
has_one :topic, serializer: TopicListItemSerializer, embed: :ids
attributes :id, :blurb, :created_at
attributes :id, :blurb, :created_at, :url
def id
object.topic.id
@ -11,6 +11,10 @@ class SimilarTopicSerializer < ApplicationSerializer
object.blurb
end
def url
object.topic.url
end
def created_at
object.topic.created_at
end