* booker email verification changes * name type fix * use totp and code * prisma schema styling * refactor: code Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in> * fix: book event form Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in> * fix: type error Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in> * fix: type errors Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in> * fix: unit tests Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in> * refactor: move verifycodedialog from ui and to features/bookings * fix: type error --------- Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in> Co-authored-by: rkreddy99 <rreddy@e2clouds.com> Co-authored-by: Udit Takkar <udit.07814802719@cse.mait.ac.in>
21 lines
582 B
TypeScript
21 lines
582 B
TypeScript
import { sendEmailVerificationByCode } from "@calcom/features/auth/lib/verifyEmail";
|
|
import logger from "@calcom/lib/logger";
|
|
|
|
import { TSendVerifyEmailCodeSchema } from "./sendVerifyEmailCode.schema"
|
|
|
|
type SendVerifyEmailCode = {
|
|
input: TSendVerifyEmailCodeSchema;
|
|
};
|
|
|
|
const log = logger.getChildLogger({ prefix: [`[[Auth] `] });
|
|
|
|
export const sendVerifyEmailCodeHandler = async ({ input }: SendVerifyEmailCode) => {
|
|
const email = await sendEmailVerificationByCode({
|
|
email: input.email,
|
|
username: input.username,
|
|
language: input.language,
|
|
});
|
|
|
|
return email;
|
|
};
|