From 65fdfa14a9639891fb1618d81eee750ddbe81423 Mon Sep 17 00:00:00 2001 From: Artem Savchenko Date: Mon, 13 Apr 2026 15:34:45 +0700 Subject: [PATCH] Clean up Signed-off-by: Artem Savchenko --- foundations/core/packages/core/src/classes.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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 {