Compare commits

..

No commits in common. "e057f1409c666af3c71b1eef467f6f530a556975" and "5d0aa45dad82da0777889dae0a0c5e9a514d19a2" have entirely different histories.

View File

@ -738,13 +738,7 @@ export async function getJitsiMeetingInfo(id: string): Promise<JitsiMeetingInfo>
return data;
}
export async function startMeeting(
id: string,
options?: {
metadata?: string;
recording_url?: string;
}
): Promise<Appointment> {
export async function startMeeting(id: string): Promise<Appointment> {
const tokens = getStoredTokens();
if (!tokens.access) {
throw new Error("Authentication required.");
@ -756,11 +750,6 @@ export async function startMeeting(
"Content-Type": "application/json",
Authorization: `Bearer ${tokens.access}`,
},
body: JSON.stringify({
action: "start",
metadata: options?.metadata,
recording_url: options?.recording_url,
}),
});
const data = await parseResponse(response);