vereto-api/app/serializers/article_serializer.rb
2018-02-21 13:40:31 +00:00

5 lines
132 B
Ruby

class ArticleSerializer < ActiveModel::Serializer
attributes :id, :title, :post, :created_at, :updated_at
belongs_to :user
end