mirror of
https://github.com/RainLoop/rainloop-webmail.git
synced 2026-02-05 11:34:54 +01:00
14 lines
323 B
JavaScript
14 lines
323 B
JavaScript
import ko from 'ko';
|
|
|
|
class PackageAdminStore {
|
|
constructor() {
|
|
this.packages = ko.observableArray([]);
|
|
this.packages.loading = ko.observable(false).extend({ throttle: 100 });
|
|
|
|
this.packagesReal = ko.observable(true);
|
|
this.packagesMainUpdatable = ko.observable(true);
|
|
}
|
|
}
|
|
|
|
export default new PackageAdminStore();
|