Browse Source

Merge pull request #8645 from salim-b/patch-1

fix: e-mail verification endpoint path
pull/8652/head
Pranav C 4 weeks ago committed by GitHub
parent
commit
4a8624a9ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/nocodb/src/services/users/users.service.ts

2
packages/nocodb/src/services/users/users.service.ts

@ -485,7 +485,7 @@ export class UsersService {
html: ejs.render(template, {
verifyLink:
(param.req as any).ncSiteUrl +
`/email/verify/${user.email_verification_token}`,
`/email/validate/${user.email_verification_token}`,
}),
});
} catch (e) {

Loading…
Cancel
Save