mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-16 12:12:14 +00:00
Return domain block digests from admin domain blocks API (#29092)
This commit is contained in:
parent
6536d96d1b
commit
f784213c64
|
@ -1,11 +1,15 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class REST::Admin::DomainBlockSerializer < ActiveModel::Serializer
|
class REST::Admin::DomainBlockSerializer < ActiveModel::Serializer
|
||||||
attributes :id, :domain, :created_at, :severity,
|
attributes :id, :domain, :digest, :created_at, :severity,
|
||||||
:reject_media, :reject_reports,
|
:reject_media, :reject_reports,
|
||||||
:private_comment, :public_comment, :obfuscate
|
:private_comment, :public_comment, :obfuscate
|
||||||
|
|
||||||
def id
|
def id
|
||||||
object.id.to_s
|
object.id.to_s
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def digest
|
||||||
|
object.domain_digest
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -49,6 +49,7 @@ RSpec.describe 'Domain Blocks' do
|
||||||
{
|
{
|
||||||
id: domain_block.id.to_s,
|
id: domain_block.id.to_s,
|
||||||
domain: domain_block.domain,
|
domain: domain_block.domain,
|
||||||
|
digest: domain_block.domain_digest,
|
||||||
created_at: domain_block.created_at.strftime('%Y-%m-%dT%H:%M:%S.%LZ'),
|
created_at: domain_block.created_at.strftime('%Y-%m-%dT%H:%M:%S.%LZ'),
|
||||||
severity: domain_block.severity.to_s,
|
severity: domain_block.severity.to_s,
|
||||||
reject_media: domain_block.reject_media,
|
reject_media: domain_block.reject_media,
|
||||||
|
@ -102,6 +103,7 @@ RSpec.describe 'Domain Blocks' do
|
||||||
{
|
{
|
||||||
id: domain_block.id.to_s,
|
id: domain_block.id.to_s,
|
||||||
domain: domain_block.domain,
|
domain: domain_block.domain,
|
||||||
|
digest: domain_block.domain_digest,
|
||||||
created_at: domain_block.created_at.strftime('%Y-%m-%dT%H:%M:%S.%LZ'),
|
created_at: domain_block.created_at.strftime('%Y-%m-%dT%H:%M:%S.%LZ'),
|
||||||
severity: domain_block.severity.to_s,
|
severity: domain_block.severity.to_s,
|
||||||
reject_media: domain_block.reject_media,
|
reject_media: domain_block.reject_media,
|
||||||
|
@ -212,6 +214,7 @@ RSpec.describe 'Domain Blocks' do
|
||||||
{
|
{
|
||||||
id: domain_block.id.to_s,
|
id: domain_block.id.to_s,
|
||||||
domain: domain_block.domain,
|
domain: domain_block.domain,
|
||||||
|
digest: domain_block.domain_digest,
|
||||||
severity: 'suspend',
|
severity: 'suspend',
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue