Fix to display message in toast when user is forbidden to do something

Translation does not work
This commit is contained in:
Julie Lenaerts 2022-02-15 14:34:40 +01:00
parent 4e83e7905a
commit a6504366b4
2 changed files with 3 additions and 4 deletions

View File

@ -21,9 +21,7 @@ const makeFetch = (method, url, body) => {
} }
if (response.status === 403) { if (response.status === 403) {
return response.json().then(() => { throw AccessException();
throw AccessException();
});
} }
throw { throw {
@ -95,7 +93,7 @@ const ValidationException = (response) => {
const AccessException = () => { const AccessException = () => {
const error = {}; const error = {};
error.name = 'AccessException'; error.name = 'AccessException';
error.violations = ['You are no longer permitted to perform this action']; error.violations = ['You are not allowed to perform this action'];
return error; return error;
} }

View File

@ -20,6 +20,7 @@ Two addresses has the same validFrom date: La date de validité est identique à
The firstname cannot be empty: Le prénom ne peut pas être vide The firstname cannot be empty: Le prénom ne peut pas être vide
The lastname cannot be empty: Le nom de famille ne peut pas être vide The lastname cannot be empty: Le nom de famille ne peut pas être vide
The gender must be set: Le genre doit être renseigné The gender must be set: Le genre doit être renseigné
You are not allowed to perform this action: Vous n'avez pas le droit de changer cette valeur.
#export list #export list
You must select at least one element: Vous devez sélectionner au moins un élément You must select at least one element: Vous devez sélectionner au moins un élément