cal.pub0.org/packages/trpc/server/routers/viewer/workflows/sendVerificationCode.handle...

17 lines
580 B
TypeScript
Raw Normal View History

import { sendVerificationCode } from "@calcom/features/ee/workflows/lib/reminders/verifyPhoneNumber";
import type { TrpcSessionUser } from "@calcom/trpc/server/trpc";
import type { TSendVerificationCodeInputSchema } from "./sendVerificationCode.schema";
type SendVerificationCodeOptions = {
ctx: {
user: NonNullable<TrpcSessionUser>;
};
input: TSendVerificationCodeInputSchema;
};
export const sendVerificationCodeHandler = async ({ ctx: _ctx, input }: SendVerificationCodeOptions) => {
const { phoneNumber } = input;
return sendVerificationCode(phoneNumber);
};