snappymail/dev/Stores/Admin/Plugin.js
RainLoop Team 17669b7be0 es5 -> es2015 (last stage)
Signature plugin fixes
Add view decorator
A large number of fixes
2016-08-20 20:30:16 +03:00

13 lines
266 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('');
}
}
module.exports = new PluginAdminStore();