Files
meet/src/frontend/src/features/rooms/api/ApiRoom.ts
T
lebaudantoine be884a8ca1 🚩(frontend) display transcript item only for admin/owner
Only room admin/owner should be abble to start a transcript.
2024-11-29 17:05:29 +01:00

16 lines
256 B
TypeScript

export type ApiRoom = {
id: string
name: string
slug: string
is_public: boolean
is_administrable: boolean
livekit?: {
url: string
room: string
token: string
}
configuration?: {
[key: string]: string | number | boolean
}
}