mirror of
https://github.com/suitenumerique/meet.git
synced 2026-07-28 04:39:16 +00:00
3b474ba1c0
Allow controlling when the metadata collector agent is started, enabling users to try the feature and disable it if needed. Introduce a user-level feature flag to toggle the agent for the initial release.
10 lines
296 B
TypeScript
10 lines
296 B
TypeScript
export enum FeatureFlags {
|
|
Transcript = 'transcription-summary',
|
|
ScreenRecording = 'screen-recording',
|
|
faceLandmarks = 'face-landmarks',
|
|
noiseReduction = 'noise-reduction',
|
|
subtitles = 'subtitles',
|
|
candidatePolling = 'candidate-polling',
|
|
metadataCollector = 'metadata-collector',
|
|
}
|