mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Missing url attribute for suggested topics
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user