-
Notifications
You must be signed in to change notification settings - Fork 120
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
LG-15217 Add submit_attempts property to doc auth troubleshooting option actions #11682
Merged
jennyverdeyen
merged 6 commits into
main
from
jverdeyen/LG-15217-add-submit-attempts-event-property
Jan 2, 2025
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
b3f2875
LG-15217 Add submit_attempts property to idv_verify_in_person_trouble…
jennyverdeyen 59649a3
Clean up and fix tests
jennyverdeyen 609397f
Update more tests to include new event property
jennyverdeyen 40f6346
use identityconfig instead of hardcoding submit_attempts in a test
jennyverdeyen dd5c117
Update description for submit_attempts in upload.tsx
jennyverdeyen 15776ae
Update troubleshooting in person option clicked event documentation f…
jennyverdeyen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1198,12 +1198,14 @@ def idv_cancellation_visited( | |
# @param ["hybrid","standard"] flow_path Document capture user flow | ||
# @param [String] use_alternate_sdk | ||
# @param [Boolean] liveness_checking_required | ||
# @param [Integer] submit_attempts Times that user has tried submitting | ||
def idv_capture_troubleshooting_dismissed( | ||
acuant_sdk_upgrade_a_b_testing_enabled:, | ||
acuant_version:, | ||
flow_path:, | ||
use_alternate_sdk:, | ||
liveness_checking_required:, | ||
submit_attempts:, | ||
**extra | ||
) | ||
track_event( | ||
|
@@ -1213,6 +1215,7 @@ def idv_capture_troubleshooting_dismissed( | |
flow_path: flow_path, | ||
use_alternate_sdk: use_alternate_sdk, | ||
liveness_checking_required: liveness_checking_required, | ||
submit_attempts: submit_attempts, | ||
**extra, | ||
) | ||
end | ||
|
@@ -5309,16 +5312,19 @@ def idv_verify_by_mail_enter_code_visited( | |
|
||
# @param ["hybrid","standard"] flow_path Document capture user flow | ||
# @param [Boolean] opted_in_to_in_person_proofing User opted into in person proofing | ||
# @param [Integer] submit_attempts Times that user has tried submitting | ||
# The user clicked the troubleshooting option to start in-person proofing | ||
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. If you update the description above, maybe do so here too |
||
def idv_verify_in_person_troubleshooting_option_clicked( | ||
flow_path:, | ||
opted_in_to_in_person_proofing:, | ||
submit_attempts:, | ||
**extra | ||
) | ||
track_event( | ||
'IdV: verify in person troubleshooting option clicked', | ||
flow_path: flow_path, | ||
opted_in_to_in_person_proofing: opted_in_to_in_person_proofing, | ||
submit_attempts: submit_attempts, | ||
**extra, | ||
) | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe try... number of doc auth submit_attempts for user