mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 23:38:14 +08:00
13 lines
238 B
JavaScript
13 lines
238 B
JavaScript
|
import ko from 'ko';
|
||
|
|
||
|
class SieveUserStore {
|
||
|
constructor() {
|
||
|
// capabilities
|
||
|
this.capa = ko.observableArray([]);
|
||
|
// Sieve scripts SieveScriptModel
|
||
|
this.scripts = ko.observableArray([]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default new SieveUserStore();
|