Skip to content

Commit

Permalink
feat: fix notitications.
Browse files Browse the repository at this point in the history
  • Loading branch information
gdethier committed May 24, 2024
1 parent e127fde commit 0756083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logion/controllers/locrequest.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1606,7 +1606,7 @@ export class LocRequestController extends ApiController {
const description = request.getDescription();
const userIdentity = requireDefined(description.userIdentity);
this.getNotificationInfo(description, userIdentity)
.then(info => this.notificationService.notify(info.legalOfficerEMail, "recoverable-secret-added", {
.then(info => this.notificationService.notify(userIdentity.email, "recoverable-secret-added", {
...info.data,
secretName: name,
}))
Expand Down

0 comments on commit 0756083

Please sign in to comment.