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

                                                    
                                                     


                  
   
# frozen_string_literal: true

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

  def id
    object.id.to_s
  end
end