Adding a page reload when 403 occurs, if token has expired this will return to login page.
This commit is contained in:
parent
c531a02725
commit
868d31299a
|
@ -43,7 +43,8 @@ const makeApiCall = async ({ method, url, body, json = true }) => {
|
||||||
case 400:
|
case 400:
|
||||||
return handleError(`${url}: Bad Request`)
|
return handleError(`${url}: Bad Request`)
|
||||||
case 403:
|
case 403:
|
||||||
notificationStore.danger("Forbidden")
|
// reload the page incase the token has expired
|
||||||
|
location.reload()
|
||||||
return handleError(`${url}: Forbidden`)
|
return handleError(`${url}: Forbidden`)
|
||||||
default:
|
default:
|
||||||
if (response.status >= 200 && response.status < 400) {
|
if (response.status >= 200 && response.status < 400) {
|
||||||
|
|
Loading…
Reference in New Issue