feat: add limits to recordings on destop (#291)

* feat: add limits to recordings on destop

* code review
This commit was merged in pull request #291.
This commit is contained in:
Arjun Patel
2026-06-20 17:22:22 -07:00
committed by GitHub
parent c11c5074ce
commit 92c12ad0bd
3 changed files with 112 additions and 8 deletions
+6
View File
@@ -4,6 +4,12 @@ export const MAX_ATTACHMENT_SIZE_BYTES = 25 * 1024 * 1024;
/** Maximum number of file attachments per particle. */
export const MAX_ATTACHMENTS = 10;
/** Maximum duration for a media (audio/video) recording, in seconds. */
export const RECORDING_MAX_DURATION_SECONDS = 60;
/** When this many seconds or fewer remain, show the red warning state. */
export const RECORDING_WARNING_SECONDS = 10;
export const SUPPORT_EMAIL = '[email protected]';
export const PRIVACY_URL = 'https://flowylabs.ai/llink/privacy';