Skip to content

Commit

Permalink
fix(core): Update transactional email links for RBAC (n8n-io#9727)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov authored and adrian-martinez-onestic committed Jun 20, 2024
1 parent 4b1fee3 commit 1056d02
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,10 @@ export class UserManagementMailer {
const result = await this.mailer.sendMail({
emailRecipients,
subject: `${sharer.firstName} has shared an n8n credential with you`,
body: populateTemplate({ credentialsName, credentialsListUrl: `${baseUrl}/credentials` }),
body: populateTemplate({
credentialsName,
credentialsListUrl: `${baseUrl}/home/credentials`,
}),
});

if (!result) return { emailSent: false };
Expand Down

0 comments on commit 1056d02

Please sign in to comment.