mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 13:39:22 +03:00
Draft of new Filters design
This commit is contained in:
parent
cd504ffa4b
commit
61c3da14b4
8 changed files with 446 additions and 114 deletions
12
dev/Stores/User/Sieve.js
Normal file
12
dev/Stores/User/Sieve.js
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
import ko from 'ko';
|
||||
|
||||
class SieveUserStore {
|
||||
constructor() {
|
||||
// capabilities
|
||||
this.capa = ko.observableArray([]);
|
||||
// Sieve scripts SieveScriptModel
|
||||
this.scripts = ko.observableArray([]);
|
||||
}
|
||||
}
|
||||
|
||||
export default new SieveUserStore();
|
||||
Loading…
Add table
Add a link
Reference in a new issue