mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-16 12:45:16 +08:00
17669b7be0
Signature plugin fixes Add view decorator A large number of fixes
13 lines
309 B
JavaScript
13 lines
309 B
JavaScript
|
|
import ko from 'ko';
|
|
|
|
class DomainAdminStore
|
|
{
|
|
constructor() {
|
|
this.domains = ko.observableArray([]);
|
|
this.domains.loading = ko.observable(false).extend({'throttle': 100});
|
|
this.domainsWithoutAliases = this.domains.filter((item) => item && !item.alias);
|
|
}
|
|
}
|
|
|
|
module.exports = new DomainAdminStore();
|