diff options
author | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-07-15 21:52:23 +0530 |
---|---|---|
committer | usodhi <61431818+usodhi@users.noreply.github.com> | 2020-07-15 21:52:23 +0530 |
commit | 3ad593cc8865d3fa1dc22bf403ad7cfaf1a751e6 (patch) | |
tree | 107bd1b2f08d4e53557c56a2d934eaaccbff9812 /src/fields/Doc.ts | |
parent | e468d507c69b9149c0e972ebad3745e4a046ddf0 (diff) |
bugfix + cleanup
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index 8ab4735a7..5dfc14a4a 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -109,7 +109,7 @@ const AclMap = new Map<string, symbol>([ ]); export function fetchProto(doc: Doc) { - if (doc.author !== Doc.CurrentUserEmail) { // storing acls for groups needs to be extended here - AclSym should store a datastructure that stores information about permissions + if (doc.author !== Doc.CurrentUserEmail) { untracked(() => { const permissions: { [key: string]: symbol } = {}; |