mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 16:28:00 +08:00
8c780ad353
Replace admin general mainAttachmentLimit with input type="number"
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
import ko from 'ko';
|
|
|
|
class PluginAdminStore {
|
|
constructor() {
|
|
this.plugins = ko.observableArray();
|
|
this.plugins.loading = ko.observable(false).extend({ debounce: 100 });
|
|
this.plugins.error = ko.observable('');
|
|
}
|
|
}
|
|
|
|
export default new PluginAdminStore();
|