mirror of
https://github.com/funamitech/mastodon
synced 2024-12-11 21:29:17 +09:00
10 lines
176 B
Ruby
10 lines
176 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class REST::Admin::DomainAllowSerializer < ActiveModel::Serializer
|
||
|
attributes :id, :domain, :created_at
|
||
|
|
||
|
def id
|
||
|
object.id.to_s
|
||
|
end
|
||
|
end
|