logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

list_serializer.rb (148B)


  1. # frozen_string_literal: true
  2. class REST::ListSerializer < ActiveModel::Serializer
  3. attributes :id, :title
  4. def id
  5. object.id.to_s
  6. end
  7. end