mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-08 15:57:37 +08:00
b6f0b634fb
Improved Knockout observableArray
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();
|