mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 11:08:07 +01:00
9 lines
213 B
Ruby
9 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
|