mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-19 05:09:22 +08:00
8c780ad353
Replace admin general mainAttachmentLimit with input type="number"
15 lines
316 B
JavaScript
15 lines
316 B
JavaScript
import ko from 'ko';
|
|
|
|
class PackageAdminStore {
|
|
constructor() {
|
|
this.packages = ko.observableArray();
|
|
this.packages.loading = ko.observable(false).extend({ debounce: 100 });
|
|
|
|
ko.addObservablesTo(this, {
|
|
packagesReal: true,
|
|
packagesMainUpdatable: true
|
|
});
|
|
}
|
|
}
|
|
|
|
export default new PackageAdminStore();
|