This commit is contained in:
2026-02-25 02:54:32 +00:00
parent 625905fc29
commit 7078b68146
10 changed files with 175 additions and 67 deletions
+2 -2
View File
@@ -54,7 +54,7 @@ usersRouter.post('/invite', async (ctx) => {
await sendMail({
template: 'UserInvite',
subject: 'You have been invited to Officer',
subject: 'You have been invited to officer.dev',
to: email,
data: { invitedBy: reqUser.name ?? reqUser.email, url },
});
@@ -81,7 +81,7 @@ usersRouter.post('/:id/resend-invite', async (ctx) => {
await sendMail({
template: 'UserInvite',
subject: 'You have been invited to Officer',
subject: 'You have been invited to officer.dev',
to: target.email,
data: { invitedBy: reqUser.name ?? reqUser.email, url },
});