Skip to content
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

Tech5 Integration - Enrollment updates #2701

Merged
merged 23 commits into from
Oct 3, 2023
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ Often you will need this generated guid to be passed back to CommCare so that it
IdentityResponseBuilder.registrationResponse(guid)
.finalizeResponse(activity)
````
Alternatively, in case the biometric templates are to be stored in CommCare, use the following instead -
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should add info on how a third party should construct templates as well.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Absolutely, I missed that one

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

c49a74e

````
IdentityResponseBuilder.registrationResponse(guid, templates)
.finalizeResponse(activity)
````

This creates an appropriate resulting Intent for the Identity registration workflow and finish your activity after setting the response as a result to returning intent.

Expand Down