-
Notifications
You must be signed in to change notification settings - Fork 17
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
feat: selective bulk issuance #509
Conversation
Signed-off-by: bhavanakarwade <bhavana.karwade@ayanworks.com>
Signed-off-by: bhavanakarwade <bhavana.karwade@ayanworks.com>
…lk-issue-credentials
Quality Gate passedIssues Measures |
@@ -397,6 +397,8 @@ export class IssuanceService { | |||
label: outOfBandCredential.label || undefined | |||
}; | |||
|
|||
this.logger.log(`outOfBandIssuancePayload ::: ${JSON.stringify(outOfBandIssuancePayload)}`); |
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.
Please remove this log if not necessary for payload.
if (cachedData && clientDetails?.isSelectiveIssuance) { | ||
await this.cacheManager.del(requestId); | ||
await this.importAndPreviewDataForIssuance(reqPayload, requestId); | ||
// await this.cacheManager.set(requestId, reqPayload); |
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.
Removed this commented code in next PR.
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.
LG
What