Merge remote-tracking branch 'origin/master' into repp-domains

This commit is contained in:
Karl Erik Õunapuu 2021-03-22 14:05:42 +02:00
commit e2f377f1c2
No known key found for this signature in database
GPG key ID: C9DD647298A34764
187 changed files with 1934 additions and 2552 deletions

View file

@ -25,6 +25,12 @@ module Serializers
registrant: {
name: domain.registrant.name,
id: domain.registrant.uuid,
ident: domain.registrant.ident,
ident_type: domain.registrant.ident_type,
ident_country_code: domain.registrant.ident_country_code,
phone: domain.registrant.phone,
email: domain.registrant.email,
org: domain.registrant.org?,
},
tech_contacts: contacts(:tech),
admin_contacts: contacts(:admin),
@ -60,7 +66,7 @@ module Serializers
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,
ident: domain.registrant.ident }
ident: domain.registrant.ident, org: domain.registrant.org? }
}
end