17 lines
396 B
TypeScript
17 lines
396 B
TypeScript
import db from '@/lib/db'
|
|
|
|
export const getPasswordResetTokenByToken = async (token: string) => {
|
|
try {
|
|
return await db.passwordResetToken.findUnique({ where: { token } })
|
|
} catch {
|
|
return null
|
|
}
|
|
}
|
|
|
|
export const getPasswordResetTokenByEmail = async (email: string) => {
|
|
try {
|
|
return await db.passwordResetToken.findFirst({ where: { email } })
|
|
} catch {
|
|
return null
|
|
}
|
|
} |