Initialize IPP pii_from_user with user UUID#6641
Conversation
**Why**: Because it's a required attribute for the real resolution vendor implementation, which otherwise fails without it. changelog: Upcoming Features, In-person proofing, Add missing user UUID attribute for proofing jobs
| required_attributes :uuid, | ||
| :first_name, | ||
| :last_name, | ||
| :dob, | ||
| :ssn, | ||
| :address1, | ||
| :city, | ||
| :state, | ||
| :zipcode | ||
|
|
||
| optional_attributes :address2, :uuid_prefix, :dob_year_only |
There was a problem hiding this comment.
Syncing this to the real vendor implementation should help surface the issue in feature specs.
|
this test is failing on this branch (locally and on GitLab); haven't investigated why yet: bundle exec rspec spec/features/saml/ial2_sso_spec.rb:143 |
|
@tomas-nava Taking a look at that one now. The other spec failures for |
|
The issue with |
| :last_name, | ||
| :dob, | ||
| :ssn, | ||
| :address1, |
There was a problem hiding this comment.
just for clarification - address1 is the street address correct?
There was a problem hiding this comment.
Yeah we populate it through the Idv::AddressForm (Address step):
identity-idp/app/forms/idv/address_form.rb
Lines 34 to 42 in 17eddab
Why: Because it's a required attribute for the real resolution vendor implementation, which otherwise fails without it.