mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-09 00:08:18 +08:00
e5af98b04b
Move e2e tests Code refactoring
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();
|