mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-01 08:16:03 +00:00
14 lines
264 B
JavaScript
14 lines
264 B
JavaScript
|
|
import ko from 'ko';
|
|
|
|
class PluginAdminStore
|
|
{
|
|
constructor() {
|
|
this.plugins = ko.observableArray([]);
|
|
this.plugins.loading = ko.observable(false).extend({throttle: 100});
|
|
this.plugins.error = ko.observable('');
|
|
}
|
|
}
|
|
|
|
export default new PluginAdminStore();
|