Skip to content

Commit

Permalink
fix(core): decrease reset password token expire time
Browse files Browse the repository at this point in the history
  • Loading branch information
tomi committed Nov 3, 2023
1 parent bb2c266 commit 4337d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/controllers/passwordReset.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class PasswordResetController {
const resetPasswordToken = this.jwtService.signData(
{ sub: id },
{
expiresIn: '1d',
expiresIn: '20m',
},
);

Expand Down

0 comments on commit 4337d66

Please sign in to comment.