6 lines
150 B
Ruby
6 lines
150 B
Ruby
class Api::PostSerializer < ActiveModel::Serializer
|
|
attribute :title
|
|
attribute :body
|
|
has_many :comments, serializer: Api::CommentSerializer
|
|
end
|