about summary refs log tree commit diff
path: root/app/serializers/rest/list_serializer.rb
blob: 45c8dca6721f52b4ed2eaf3ccc9939590935c96b (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class REST::ListSerializer < ActiveModel::Serializer
  attributes :id, :title, :replies_policy, :reblogs

  def id
    object.id.to_s
  end
end