mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-07 21:48:28 +03:00
13 lines
264 B
JavaScript
13 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();
|