2023-04-25 22:39:47 +00:00
|
|
|
import type { PrismaClient } from "@prisma/client";
|
|
|
|
|
|
|
|
import { getPublicEvent } from "@calcom/features/eventtypes/lib/getPublicEvent";
|
|
|
|
|
|
|
|
import type { TEventInputSchema } from "./event.schema";
|
|
|
|
|
|
|
|
interface EventHandlerOptions {
|
|
|
|
ctx: { prisma: PrismaClient };
|
|
|
|
input: TEventInputSchema;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const eventHandler = async ({ ctx, input }: EventHandlerOptions) => {
|
2023-06-21 07:31:55 +00:00
|
|
|
const event = await getPublicEvent(input.username, input.eventSlug, input.isTeamEvent, ctx.prisma);
|
2023-04-25 22:39:47 +00:00
|
|
|
return event;
|
|
|
|
};
|