mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
16 lines
210 B
Ruby
16 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
|
|
|