diff --git a/foundations/core/packages/core/src/classes.ts b/foundations/core/packages/core/src/classes.ts index 1eec454297..d94a807a7f 100644 --- a/foundations/core/packages/core/src/classes.ts +++ b/foundations/core/packages/core/src/classes.ts @@ -987,13 +987,7 @@ export interface ClassCollaborators extends Doc { fields: (keyof T)[] // PersonId | Ref | PersonId[] | Ref[] provideSecurity?: boolean // If true, will provide security for collaborators provideAttachedSecurity?: boolean // If true, will provide security for collaborators of attached doc - /** - * If true, guest / read-only-guest `findAll` queries for this class are intersected with - * document ids the account has as {@link Collaborator} (middleware), in addition to DB-level - * checks when {@link provideSecurity} is enabled. Prefer this over overloading `provideSecurity` - * when only meeting-minutes-style id filtering is needed. - */ - restrictGuestReadToCollaborators?: boolean + restrictGuestReadToCollaborators?: boolean // If true, will restrict guest read to collaborators only } export interface Collaborator extends AttachedDoc {