vereto-api/app/serializers/article_serializer.rb

6 lines
132 B
Ruby
Raw Normal View History

2018-02-21 13:40:31 +00:00
class ArticleSerializer < ActiveModel::Serializer
attributes :id, :title, :post, :created_at, :updated_at
belongs_to :user
end