Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions app/forms/idv/api_image_upload_form.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ def update_analytics(client_response)
**client_response.to_h.merge(
client_image_metrics: image_metadata,
async: false,
flow_path: params[:flow_path],
),
)
end
Expand Down
6 changes: 4 additions & 2 deletions app/services/analytics_events.rb
Original file line number Diff line number Diff line change
Expand Up @@ -473,11 +473,13 @@ def idv_doc_auth_exception_visited(step_name:, remaining_attempts:, **extra)
# @param [Integer] remaining_attempts
# @param [String] user_id
# @param [String] flow_path
# The document capture image uploaded was locally validated during the IDV process
# The document capture image uploaded was locally validated during the IDV process
def idv_doc_auth_submitted_image_upload_form(
success:,
errors:,
remaining_attempts:, flow_path:, attempts: nil,
remaining_attempts:,
flow_path:,
attempts: nil,
user_id: nil,
**extra
)
Expand Down