18 lines
588 B
TypeScript
18 lines
588 B
TypeScript
import type { IncomingMessage } from "http";
|
|
|
|
import { getAvailableSlots } from "../slots/util";
|
|
import type { TGetTeamScheduleInputSchema } from "./getTeamSchedule.schema";
|
|
|
|
export type GetTeamScheduleOptions = {
|
|
ctx?: ContextForGetSchedule;
|
|
input: TGetTeamScheduleInputSchema;
|
|
};
|
|
|
|
interface ContextForGetSchedule extends Record<string, unknown> {
|
|
req?: (IncomingMessage & { cookies: Partial<{ [key: string]: string }> }) | undefined;
|
|
}
|
|
|
|
export const getTeamScheduleHandler = async ({ ctx, input }: GetTeamScheduleOptions) => {
|
|
return await getAvailableSlots({ ctx, input });
|
|
};
|