only recordings that are *recorded* require consent

This commit is contained in:
Igor Loskutov
2025-06-19 10:54:27 -04:00
parent 6cb46dc64f
commit 92a08653aa
4 changed files with 19 additions and 2 deletions

View File

@@ -546,6 +546,12 @@ export const $Meeting = {
format: "date-time",
title: "End Date",
},
recording_type: {
type: "string",
enum: ["none", "local", "cloud"],
title: "Recording Type",
default: "cloud",
},
},
type: "object",
required: [

View File

@@ -108,8 +108,11 @@ export type Meeting = {
host_room_url: string;
start_date: string;
end_date: string;
recording_type?: "none" | "local" | "cloud";
};
export type recording_type = "none" | "local" | "cloud";
export type MeetingConsentRequest = {
consent_given: boolean;
};