mirror of
https://github.com/discourse/discourse.git
synced 2025-05-03 08:04:35 +08: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
|