2024-03-20 15:37:21 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::AccountRelationshipSeveranceEventSerializer < ActiveModel::Serializer
|
2024-03-22 15:44:31 +00:00
|
|
|
attributes :id, :type, :purged, :target_name, :followers_count, :following_count, :created_at
|
2024-03-20 15:37:21 +00:00
|
|
|
|
|
|
|
def id
|
|
|
|
object.id.to_s
|
|
|
|
end
|
|
|
|
end
|