mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-16 12:45:16 +08:00
14 lines
277 B
JavaScript
14 lines
277 B
JavaScript
|
|
var ko = require('ko');
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function PluginAdminStore()
|
|
{
|
|
this.plugins = ko.observableArray([]);
|
|
this.plugins.loading = ko.observable(false).extend({'throttle': 100});
|
|
this.plugins.error = ko.observable('');
|
|
}
|
|
|
|
module.exports = new PluginAdminStore();
|