mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 08:38:06 +01:00
10 lines
191 B
Ruby
10 lines
191 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class REST::Admin::EmailDomainBlockSerializer < ActiveModel::Serializer
|
||
|
attributes :id, :domain, :created_at, :history
|
||
|
|
||
|
def id
|
||
|
object.id.to_s
|
||
|
end
|
||
|
end
|