Ensure 403 errors are probably handled on the front-end

merge-requests/237/head
Eliot Berriot 2018-05-26 12:46:13 +02:00
rodzic a9799e66d7
commit 7ad19a3fbb
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -81,6 +81,8 @@ axios.interceptors.response.use(function (response) {
}
if (error.response.status === 404) {
error.backendErrors.push('Resource not found')
} else if (error.response.status === 403) {
error.backendErrors.push('Permission denied')
} else if (error.response.status === 500) {
error.backendErrors.push('A server error occured')
} else if (error.response.data) {