mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 00:38:04 +08:00
21 lines
297 B
JavaScript
21 lines
297 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
ko = require('ko')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function IdentityUserStore()
|
|
{
|
|
this.identities = ko.observableArray([]);
|
|
this.identities.loading = ko.observable(false).extend({'throttle': 100});
|
|
}
|
|
|
|
module.exports = new IdentityUserStore();
|
|
|
|
}());
|