mirror of
https://github.com/RainLoop/rainloop-webmail.git
synced 2026-02-01 11:34:25 +01:00
12 lines
265 B
JavaScript
12 lines
265 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();
|