mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-06 06:52:20 +08:00
e5af98b04b
Move e2e tests Code refactoring
16 lines
368 B
JavaScript
16 lines
368 B
JavaScript
|
|
import _ from '_';
|
|
import ko from 'ko';
|
|
|
|
class IdentityUserStore
|
|
{
|
|
constructor() {
|
|
this.identities = ko.observableArray([]);
|
|
this.identities.loading = ko.observable(false).extend({throttle: 100});
|
|
|
|
this.identitiesIDS = ko.computed(
|
|
() => _.compact(_.map(this.identities(), (item) => (item ? item.id : null))));
|
|
}
|
|
}
|
|
|
|
export default new IdentityUserStore();
|