Skip to content

Commit 9ed41b9

Browse files
authoredMar 13, 2025··
Merge pull request #11984 from 18F/stages/rc-2025-03-13.1
Deploy RC 459.1 to Prod
2 parents a268c3e + 775a310 commit 9ed41b9

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
 

‎app/controllers/idv/hybrid_mobile/entry_controller.rb

+7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ def show
1313

1414
return handle_invalid_document_capture_session if !validate_document_capture_user_id
1515

16+
# to be removed 50/50 - start
17+
unless document_capture_session.doc_auth_vendor
18+
document_capture_session
19+
.update!(doc_auth_vendor: IdentityConfig.store.doc_auth_vendor_default)
20+
end
21+
# to be removed 50/50 - end
22+
1623
case document_capture_session.doc_auth_vendor
1724
when Idp::Constants::Vendors::SOCURE, Idp::Constants::Vendors::SOCURE_MOCK
1825
redirect_to idv_hybrid_mobile_socure_document_capture_url

‎app/forms/idv/api_image_upload_form.rb

+7
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,13 @@ def document_capture_session_uuid
330330
end
331331

332332
def doc_auth_client
333+
# to be removed 50/50 - start
334+
unless document_capture_session.doc_auth_vendor
335+
document_capture_session
336+
.update!(doc_auth_vendor: IdentityConfig.store.doc_auth_vendor_default)
337+
end
338+
# to be removed 50/50 - end
339+
333340
@doc_auth_client ||= DocAuthRouter.client(
334341
vendor: document_capture_session.doc_auth_vendor,
335342
warn_notifier: proc do |attrs|

0 commit comments

Comments
 (0)
Please sign in to comment.