comparison client/src/components/importconfiguration/ScheduledImports.vue @ 3761:f14ff00ad82a

import_configuration: retries and wait parameter added for trigger function
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 25 Jun 2019 17:05:57 +0200
parents a925e4e323a8
children c373758ca2df
comparison
equal deleted inserted replaced
3760:aea53775a3a7 3761:f14ff00ad82a
816 data["min-width"] = this.minWidth * 1; 816 data["min-width"] = this.minWidth * 1;
817 data["max-width"] = this.maxWidth * 1; 817 data["max-width"] = this.maxWidth * 1;
818 data["depth"] = this.depth * 1; 818 data["depth"] = this.depth * 1;
819 data["source-organization"] = this.sourceOrganization; 819 data["source-organization"] = this.sourceOrganization;
820 } 820 }
821 if (this.waitRetry) data["wait-retry"] = this.waitRetry;
822 if (this.trys) data["trys"] = Number(this.trys);
821 data["send-email"] = this.eMailNotification; 823 data["send-email"] = this.eMailNotification;
822 this.triggerActive = false; 824 this.triggerActive = false;
823 this.$store 825 this.$store
824 .dispatch("importschedule/triggerImport", { 826 .dispatch("importschedule/triggerImport", {
825 type: IMPORTTYPEKIND[this.import_], 827 type: IMPORTTYPEKIND[this.import_],