mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Fix to display message in toast when user is forbidden to do something
Translation does not work
This commit is contained in:
parent
4e83e7905a
commit
a6504366b4
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user