mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:20:43 +08:00
17 lines
210 B
Ruby
17 lines
210 B
Ruby
class EmbeddableHostSerializer < ApplicationSerializer
|
|
attributes :id, :host, :category_id
|
|
|
|
def id
|
|
object.id
|
|
end
|
|
|
|
def host
|
|
object.host
|
|
end
|
|
|
|
def category_id
|
|
object.category_id
|
|
end
|
|
end
|
|
|