Add parseInt to token expiration

This commit is contained in:
Tuan Dang
2022-12-09 10:10:38 -05:00
parent a8dfcae777
commit 3d25baa319
2 changed files with 2 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ const checkEmailVerification = async ({
email,
token: code
});
if (!token) throw new Error('Failed to find email verification token');
} catch (err) {
Sentry.setUser(null);

View File

@@ -18,7 +18,7 @@ const tokenSchema = new Schema<IToken>({
},
createdAt: {
type: Date,
expires: EMAIL_TOKEN_LIFETIME,
expires: parseInt(EMAIL_TOKEN_LIFETIME),
default: Date.now
}
});