mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-17 22:17:51 +00:00
be884a8ca1
Only room admin/owner should be abble to start a transcript.
16 lines
256 B
TypeScript
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
|
|
}
|
|
}
|