mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-25 07:16:21 +08:00
12 lines
234 B
JavaScript
12 lines
234 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();
|