Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Commit a761bdc

Browse files
author
the-djmaze
committed
Small cleanup of #157
1 parent c091064 commit a761bdc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dev/View/Popup/Folder.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class FolderACLRightsModel extends AbstractModel {
3939
json.rights = json.rights.split('');
4040
return super.reviveFromJson(json);
4141
}
42-
42+
/*
4343
get mayReadItems() { return this.rights.includes('l') && this.rights.includes('r'); }
4444
get mayAddItems() { return this.rights.includes('i'); }
4545
get mayRemoveItems() { return this.rights.includes('t') && this.rights.includes('e'); }
@@ -49,6 +49,7 @@ export class FolderACLRightsModel extends AbstractModel {
4949
get mayRename() { return this.rights.includes('x'); }
5050
get mayDelete() { return this.rights.includes('x'); }
5151
get maySubmit() { return this.rights.includes('p'); }
52+
*/
5253
}
5354

5455
export class FolderPopupView extends AbstractViewPopup {

0 commit comments

Comments
 (0)