mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-01 04:22:15 +08:00
8c780ad353
Replace admin general mainAttachmentLimit with input type="number"
12 lines
340 B
JavaScript
12 lines
340 B
JavaScript
import ko from 'ko';
|
|
|
|
class IdentityUserStore {
|
|
constructor() {
|
|
this.identities = ko.observableArray();
|
|
this.identities.loading = ko.observable(false).extend({ debounce: 100 });
|
|
|
|
this.getIDS = () => this.identities.map(item => (item ? item.id() : null)).filter(value => null !== value);
|
|
}
|
|
}
|
|
|
|
export default new IdentityUserStore();
|