-
Notifications
You must be signed in to change notification settings - Fork 166
LG-13738 For Enhanced In-Person Enrollments Only, By-pass Primary ID Type Check in USPS Proofing Results Job #10917
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
32270be
4ef2013
08f084e
1a4b87e
6528bee
294c346
16cda88
01c55c2
9b20990
3c03da2
8c474a9
df06822
15f1911
d9a3664
377af30
ecfbdbb
9b6a407
01eff13
b5eb47d
532652d
180e4ea
7320deb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -419,7 +419,9 @@ development: | |
| state_tracking_enabled: true | ||
| telephony_adapter: test | ||
| use_dashboard_service_providers: true | ||
| usps_ipp_sponsor_id: '111111111111111' | ||
| usps_ipp_transliteration_enabled: true | ||
| usps_eipp_sponsor_id: '222222222222222' | ||
|
gina-yamada marked this conversation as resolved.
|
||
| usps_upload_sftp_directory: "/gsa_order" | ||
| usps_upload_sftp_host: localhost | ||
| usps_upload_sftp_password: test | ||
|
|
@@ -587,6 +589,8 @@ test: | |
| verify_personal_key_attempt_window_in_minutes: 3 | ||
| verify_personal_key_max_attempts: 2 | ||
| usps_ipp_root_url: 'http://localhost:1000' | ||
| usps_ipp_sponsor_id: '111111111111111' | ||
| usps_eipp_sponsor_id: '222222222222222' | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I added these configs in the test section so that spec/factories/in_person_enrollments.rb will always have a value when they are not set in individual specs |
||
| usps_upload_sftp_directory: "/directory" | ||
| usps_upload_sftp_host: example.com | ||
| usps_upload_sftp_password: pass | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ | |
| selected_location_details { { name: 'BALTIMORE' } } | ||
| unique_id { InPersonEnrollment.generate_unique_id } | ||
| user { association :user, :fully_registered } | ||
| sponsor_id { IdentityConfig.store.usps_ipp_sponsor_id } | ||
|
|
||
| trait :establishing do | ||
| status { :establishing } | ||
|
|
@@ -42,8 +43,8 @@ | |
| association :notification_phone_configuration | ||
| end | ||
|
|
||
| trait :with_sponsor_id do | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I deleted this trait now that it comes on :in_person_enrollment - see line 8 above
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Makes sense to me. 👍🏻 |
||
| sponsor_id { '123458' } | ||
| trait :enhanced_ipp do | ||
| sponsor_id { IdentityConfig.store.usps_eipp_sponsor_id } | ||
| end | ||
| end | ||
| end | ||
Uh oh!
There was an error while loading. Please reload this page.