2022-08-27 20:37:55 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
class REST::Admin::EmailDomainBlockSerializer < ActiveModel::Serializer
|
2024-01-04 03:07:05 -06:00
|
|
|
attributes :id, :domain, :created_at, :history, :allow_with_approval
|
2022-08-27 20:37:55 -05:00
|
|
|
|
|
|
|
|
def id
|
|
|
|
|
object.id.to_s
|
|
|
|
|
end
|
|
|
|
|
end
|