mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-17 12:42:35 +00:00
10 lines
213 B
Ruby
10 lines
213 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::Admin::EmailDomainBlockSerializer < ActiveModel::Serializer
|
|
attributes :id, :domain, :created_at, :history, :allow_with_approval
|
|
|
|
def id
|
|
object.id.to_s
|
|
end
|
|
end
|