mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
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',
|
|
},
|
|
});
|
|
};
|