Merge pull request #1783 from internetee/add-registrant-ident-to-domains-simple-list

Registrant API: Add registrant ident to simplified domains list
This commit is contained in:
Timo Võhmar 2021-01-05 17:55:13 +02:00 committed by GitHub
commit 15295f990f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,8 @@ module Serializers
registrant_verification_asked_at: domain.registrant_verification_asked_at,
registrar: { name: domain.registrar.name, website: domain.registrar.website },
registrant: { name: domain.registrant.name, id: domain.registrant.uuid,
phone: domain.registrant.phone, email: domain.registrant.email }
phone: domain.registrant.phone, email: domain.registrant.email,
ident: domain.registrant.ident }
}
end