snappymail/dev/Stores/Admin/Plugin.js
RainLoop Team e5af98b04b Update ckeditor
Move e2e tests
Code refactoring
2016-09-12 23:50:21 +03:00

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();