Convert user stores to single object instances

Removed unused ContactUserStore.exportingCsv and ContactUserStore.exportingVcf
This commit is contained in:
djmaze 2021-03-10 22:41:35 +01:00
parent 914c6e8d14
commit 6a454ec624
46 changed files with 671 additions and 710 deletions

View file

@ -2,7 +2,7 @@ import ko from 'ko';
// import Remote from 'Remote/User/Fetch';
class TemplateUserStore {
export const TemplateUserStore = new class {
constructor() {
this.templates = ko.observableArray();
this.templates.loading = ko.observable(false).extend({ debounce: 100 });
@ -29,6 +29,4 @@ class TemplateUserStore {
// }
// });
}
}
export default new TemplateUserStore();
};