Fix check

This commit is contained in:
Karl Ludwig Weise
2026-06-18 18:01:50 +02:00
parent 171d236080
commit 1be41bf0db
2 changed files with 2 additions and 1 deletions
@@ -570,7 +570,7 @@ export class AppointmentService {
iv: string;
authTag: string;
};
incomingTunnelId: string;
incomingTunnelId?: string;
},
staffCreated = false,
): Promise<AppointmentResponse> {
@@ -333,6 +333,7 @@ export const POST: RequestHandler = async ({ params, request, locals }) => {
clientEmail: validatedData.clientEmail || "",
clientLanguage: validatedData.clientLanguage,
encryptedAppointment: validatedData.encryptedAppointment,
incomingTunnelId: validatedData.tunnelId,
};
result = await appointmentService.addAppointmentToTunnel(appointmentData, true);