Skip to content

Commit 4b87f57

Browse files
committed
Type fix
1 parent 475ef95 commit 4b87f57

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

packages/features/bookings/lib/handleNewBooking.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ export const getEventTypesFromDB = async (eventTypeId: number) => {
285285
};
286286
};
287287

288-
type IsFixedAwareUser = User & {
288+
export type IsFixedAwareUser = User & {
289289
isFixed: boolean;
290290
credentials: CredentialPayload[];
291291
organization: { slug: string };

packages/features/ee/round-robin/roundRobinReassignment.ts

+6-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import EventManager from "@calcom/core/EventManager";
22
import dayjs from "@calcom/dayjs";
33
import { sendRoundRobinCancelledEmails, sendRoundRobinScheduledEmails } from "@calcom/emails";
44
import { ensureAvailableUsers, getEventTypesFromDB } from "@calcom/features/bookings/lib/handleNewBooking";
5-
import type { User } from "@calcom/features/bookings/lib/handleNewBooking";
5+
import type { IsFixedAwareUser } from "@calcom/features/bookings/lib/handleNewBooking";
66
import { scheduleEmailReminder } from "@calcom/features/ee/workflows/lib/reminders/emailReminderManager";
77
import logger from "@calcom/lib/logger";
88
import { getLuckyUser } from "@calcom/lib/server";
@@ -24,14 +24,13 @@ export const roundRobinReassignment = async ({
2424
});
2525

2626
const eventType = await getEventTypesFromDB(eventTypeId);
27-
console.log("🚀 ~ eventType:", eventType.hosts[0].user.credentials);
2827

2928
if (!eventType) {
3029
console.error(`Event type ${eventTypeId} not found`);
3130
throw new Error("Event type not found");
3231
}
3332

34-
eventType.users = eventType.hosts.map((host) => ({ ...host.user }));
33+
eventType.users = eventType.hosts.map((host) => ({ ...host.user, isFixed: host.isFixed }));
3534

3635
const roundRobinHosts = eventType.hosts.filter((host) => !host.isFixed);
3736

@@ -92,12 +91,12 @@ export const roundRobinReassignment = async ({
9291
const previousRRHostT = await getTranslation(previousRRHost?.locale || "en", "common");
9392

9493
// Filter out the current attendees of the booking from the event type
95-
const availableEventTypeUsers = eventType.users.reduce((availableUsers, user) => {
96-
if (!attendeeEmailsSet.has(user.email) && user.email !== originalOrganizer.email) {
97-
availableUsers.push(user);
94+
const availableEventTypeUsers = eventType.hosts.reduce((availableUsers, host) => {
95+
if (!attendeeEmailsSet.has(host.user.email) && host.user.email !== originalOrganizer.email) {
96+
availableUsers.push({ ...host.user });
9897
}
9998
return availableUsers;
100-
}, [] as User[]);
99+
}, [] as IsFixedAwareUser[]);
101100

102101
const availableUsers = await ensureAvailableUsers(
103102
{ ...eventType, users: availableEventTypeUsers },

0 commit comments

Comments
 (0)