6 lines
114 B
Ruby
6 lines
114 B
Ruby
class Api::PostSerializer < ActiveModel::Serializer
|
|
attribute :title
|
|
attribute :body
|
|
has_many :comments
|
|
end
|