mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-08 15:57:37 +08:00
16 lines
334 B
JavaScript
16 lines
334 B
JavaScript
|
|
var ko = require('ko');
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function PackageAdminStore()
|
|
{
|
|
this.packages = ko.observableArray([]);
|
|
this.packages.loading = ko.observable(false).extend({'throttle': 100});
|
|
|
|
this.packagesReal = ko.observable(true);
|
|
this.packagesMainUpdatable = ko.observable(true);
|
|
}
|
|
|
|
module.exports = new PackageAdminStore();
|