feat: Add preference to disable download option for viewers

This commit is contained in:
Tom Moor
2022-11-08 21:26:02 -05:00
parent 587f062677
commit 369ac487b1
4 changed files with 51 additions and 1 deletions

View File

@@ -59,6 +59,8 @@ export enum TeamPreference {
SeamlessEdit = "seamlessEdit",
/** Whether to use team logo across the app for branding. */
PublicBranding = "publicBranding",
/** Whether viewers should see download options */
ViewersCanExport = "viewersCanExport",
}
export type TeamPreferences = { [key in TeamPreference]?: boolean };