mirror of
https://github.com/RainLoop/rainloop-webmail.git
synced 2026-02-05 11:34:54 +01:00
23 lines
331 B
JavaScript
23 lines
331 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
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();
|
|
|
|
}());
|