mirror of
https://github.com/documenso/documenso.git
synced 2026-07-21 07:23:37 +10:00
9ac7b94d9a
Allow organisations to manage an SSO OIDC compliant portal. This method is intended to streamline the onboarding process and paves the way to allow organisations to manage their members in a more strict way.
22 lines
535 B
TypeScript
22 lines
535 B
TypeScript
import { prisma } from '@documenso/prisma';
|
|
|
|
import { USER_SIGNUP_VERIFICATION_TOKEN_IDENTIFIER } from '../../constants/email';
|
|
|
|
export type getMostRecentEmailVerificationTokenOptions = {
|
|
userId: number;
|
|
};
|
|
|
|
export const getMostRecentEmailVerificationToken = async ({
|
|
userId,
|
|
}: getMostRecentEmailVerificationTokenOptions) => {
|
|
return await prisma.verificationToken.findFirst({
|
|
where: {
|
|
userId,
|
|
identifier: USER_SIGNUP_VERIFICATION_TOKEN_IDENTIFIER,
|
|
},
|
|
orderBy: {
|
|
createdAt: 'desc',
|
|
},
|
|
});
|
|
};
|