Return domain block digests from admin domain blocks API (#29092)

This commit is contained in:
Emelia Smith 2024-02-06 13:38:14 +01:00 committed by Claire
parent b10511e0f3
commit 56d76cc9ca
1 changed files with 5 additions and 1 deletions

View File

@ -1,11 +1,15 @@
# frozen_string_literal: true
class REST::Admin::DomainBlockSerializer < ActiveModel::Serializer
attributes :id, :domain, :created_at, :severity,
attributes :id, :domain, :digest, :created_at, :severity,
:reject_media, :reject_reports,
:private_comment, :public_comment, :obfuscate
def id
object.id.to_s
end
def digest
object.domain_digest
end
end