fix: Prevent email login token reuse

This commit is contained in:
Tom Moor
2024-06-04 23:38:00 -04:00
parent 70bc8f1a5a
commit 7eb6dcf00b

View File

@@ -91,6 +91,12 @@ export async function getUserForEmailSigninToken(token: string): Promise<User> {
rejectOnEmpty: true,
});
if (user.lastSignedInAt) {
if (user.lastSignedInAt > new Date(payload.createdAt)) {
throw AuthenticationError("Expired token");
}
}
try {
JWT.verify(token, user.jwtSecret);
} catch (err) {