mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-10 06:58:27 +03: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();
|