mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
9 lines
181 B
Ruby
9 lines
181 B
Ruby
|
class EmbeddingSerializer < ApplicationSerializer
|
||
|
attributes :id
|
||
|
has_many :embeddable_hosts, serializer: EmbeddableHostSerializer, embed: :ids
|
||
|
|
||
|
def id
|
||
|
object.id
|
||
|
end
|
||
|
end
|