snappymail/dev/Stores/User/Sieve.js

13 lines
238 B
JavaScript
Raw Normal View History

2021-01-18 23:47:10 +08:00
import ko from 'ko';
class SieveUserStore {
constructor() {
// capabilities
this.capa = ko.observableArray([]);
// Sieve scripts SieveScriptModel
this.scripts = ko.observableArray([]);
}
}
export default new SieveUserStore();