account_relationship_severance_event_serializer.rb 248 B

123456789
  1. # frozen_string_literal: true
  2. class REST::AccountRelationshipSeveranceEventSerializer < ActiveModel::Serializer
  3. attributes :id, :type, :purged, :target_name, :followers_count, :following_count, :created_at
  4. def id
  5. object.id.to_s
  6. end
  7. end