mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
18 lines
318 B
Ruby
18 lines
318 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class REST::DomainBlockSerializer < ActiveModel::Serializer
|
||
|
attributes :domain, :digest, :severity, :comment
|
||
|
|
||
|
def domain
|
||
|
object.public_domain
|
||
|
end
|
||
|
|
||
|
def digest
|
||
|
object.domain_digest
|
||
|
end
|
||
|
|
||
|
def comment
|
||
|
object.public_comment if instance_options[:with_comment]
|
||
|
end
|
||
|
end
|