Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2ebd87f
Ripped out CaptureCompleteStep
jmax-gsa Apr 25, 2023
4ddff41
Removed document capture step
jmax-gsa Apr 25, 2023
c9fb996
Removed CaptureDocController
jmax-gsa Apr 25, 2023
feaceae
Removed VerifyDocumentStatusAction
jmax-gsa Apr 25, 2023
891d659
Removed CaptureDocFlow
jmax-gsa Apr 25, 2023
af93d54
Removed doc_auth_hybrid_mobile_controllers_enabled feature flag
jmax-gsa Apr 25, 2023
060c549
Fix syntax error in UploadStep
soniaconnolly Apr 25, 2023
014a4e0
Remove VerifyDocumentStatusAction from DocAuthFlow
soniaconnolly Apr 25, 2023
b6c7f68
lint
soniaconnolly Apr 25, 2023
1b9ad7c
Remove FSM document_capture path spec helpers
soniaconnolly Apr 25, 2023
a914815
Remove capture_doc routes
soniaconnolly Apr 25, 2023
a40dcb8
Remove reference to @step_url in _document_capture.html.erb
soniaconnolly Apr 25, 2023
67313c6
Move override_csp_to_allow_acuant spec to acuant_concern_spec.rb
jmax-gsa Apr 25, 2023
56eb68e
Stopped using doc_auth_enable_presigned_s3_urls flag
jmax-gsa Apr 26, 2023
2284a76
Remove hybrid_flow_spec
jmax-gsa Apr 26, 2023
5d7fc20
Remove more async specs
jmax-gsa Apr 26, 2023
86e4ce0
Changelog
jmax-gsa Apr 26, 2023
4d86ab1
Remove idv_doc_auth_verify_document_status_submitted method, unused
soniaconnolly Apr 27, 2023
cc03d1d
Merge remote-tracking branch 'origin/main' into jmax/LG-9107-remove-f…
soniaconnolly Apr 28, 2023
718ce77
Merge remote-tracking branch 'origin/main' into jmax/LG-9107-remove-f…
soniaconnolly May 1, 2023
6a0ca0c
Removed ApiDocumentverificationStatusForm
jmax-gsa May 2, 2023
19469cd
Put ApiDocumentverificationStatusForm back
jmax-gsa May 2, 2023
f1105b4
Merge remote-tracking branch 'origin/main' into jmax/LG-9107-remove-f…
soniaconnolly May 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions app/controllers/concerns/idv/document_capture_concern.rb

This file was deleted.

74 changes: 0 additions & 74 deletions app/controllers/idv/capture_doc_controller.rb

This file was deleted.

5 changes: 0 additions & 5 deletions app/controllers/idv/document_capture_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ def update
end

def extra_view_variables
# Used to call :verify_document_status in idv/shared/_document_capture.html.erb
# That code can be updated after the hybrid flow is out of the FSM, and then
# this can be removed.
@step_url = :idv_doc_auth_step_url

url_builder = ImageUploadPresignedUrlGenerator.new

{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ def update
end

def extra_view_variables
# Used to call :verify_document_status in idv/shared/_document_capture.html.erb
# That code can be updated after the hybrid flow is out of the FSM, and then
# this can be removed.
@step_url = :idv_capture_doc_step_url

url_builder = ImageUploadPresignedUrlGenerator.new

{
Expand Down
4 changes: 0 additions & 4 deletions app/services/analytics_events.rb
Original file line number Diff line number Diff line change
Expand Up @@ -921,10 +921,6 @@ def idv_doc_auth_upload_visited(**extra)
track_event('IdV: doc auth upload visited', **extra)
end

def idv_doc_auth_verify_document_status_submitted(**extra)
track_event('IdV: doc auth verify_document_status submitted', **extra)
end

# @identity.idp.previous_event_name IdV: in person proofing verify submitted
def idv_doc_auth_verify_submitted(**extra)
track_event('IdV: doc auth verify submitted', **extra)
Expand Down
126 changes: 0 additions & 126 deletions app/services/idv/actions/verify_document_status_action.rb

This file was deleted.

37 changes: 0 additions & 37 deletions app/services/idv/flows/capture_doc_flow.rb

This file was deleted.

1 change: 0 additions & 1 deletion app/services/idv/flows/doc_auth_flow.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class DocAuthFlow < Flow::BaseFlow
ACTIONS = {
cancel_link_sent: Idv::Actions::CancelLinkSentAction,
redo_document_capture: Idv::Actions::RedoDocumentCaptureAction,
verify_document_status: Idv::Actions::VerifyDocumentStatusAction,
}.freeze

attr_reader :idv_session # this is needed to support (and satisfy) the current LOA3 flow
Expand Down
13 changes: 0 additions & 13 deletions app/services/idv/steps/capture_complete_step.rb

This file was deleted.

Loading