mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 13:09:21 +03:00
Some improvements for ACL Support #157
This commit is contained in:
parent
a0f7114a39
commit
b0d4b56cee
9 changed files with 160 additions and 20 deletions
|
|
@ -27,6 +27,9 @@ import Remote from 'Remote/User/Fetch';
|
|||
|
||||
import { FileInfo } from 'Common/File';
|
||||
|
||||
import { FolderPopupView } from 'View/Popup/Folder';
|
||||
import { showScreenPopup } from 'Knoin/Knoin';
|
||||
|
||||
const
|
||||
// isPosNumeric = value => null != value && /^[0-9]*$/.test(value.toString()),
|
||||
|
||||
|
|
@ -481,7 +484,8 @@ export class FolderModel extends AbstractModel {
|
|||
}
|
||||
|
||||
edit() {
|
||||
this.canBeEdited() && this.editing(true);
|
||||
// this.canBeEdited() && this.editing(true);
|
||||
this.canBeEdited() && showScreenPopup(FolderPopupView, [this]);
|
||||
}
|
||||
|
||||
unedit() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue