5 lines
132 B
Ruby
5 lines
132 B
Ruby
class ArticleSerializer < ActiveModel::Serializer
|
|
attributes :id, :title, :post, :created_at, :updated_at
|
|
|
|
belongs_to :user
|
|
end
|