mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-06 06:52:20 +08:00
12 lines
238 B
JavaScript
12 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();
|