refs #6915 test_master24_8 #2067

Merged
alexm merged 561 commits from test_master24_8 into master 2024-02-22 07:31:34 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit d60a95feaa - Show all commits

View File

@ -207,5 +207,5 @@
"The notification subscription of this worker cant be modified": "The notification subscription of this worker cant be modified",
"Name should be uppercase": "Name should be uppercase",
"You cannot update these fields": "You cannot update these fields",
"CountryFK cannot be empty": "CountryFK cannot be empty"
"CountryFK cannot be empty": "Country cannot be empty"
}

View File

@ -341,5 +341,5 @@
"Bank entity must be specified": "La entidad bancaria es obligatoria",
"An email is necessary": "Es necesario un email",
"You cannot update these fields": "No puedes actualizar estos campos",
"CountryFK cannot be empty": "CountryFK cannot be empty"
"CountryFK cannot be empty": "El país no puede estar vacío"
}

View File

@ -52,6 +52,6 @@ module.exports = Self => {
else ctx.args.recipient = reportMail;
if (!ctx.args.recipient) throw new UserError('An email is necessary');
Self.sendTemplate(ctx, 'driver-route');
return Self.sendTemplate(ctx, 'driver-route');
};
};