Allowing self endpoints to 403 and not reload page.
This commit is contained in:
parent
ecb2ab95af
commit
7c38150fbb
|
@ -15,8 +15,10 @@ const apiCall =
|
|||
if (resp.status === 403) {
|
||||
removeCookie(Cookies.Auth)
|
||||
// reload after removing cookie, go to login
|
||||
if (!url.includes("self")) {
|
||||
location.reload()
|
||||
}
|
||||
}
|
||||
return resp
|
||||
}
|
||||
|
||||
|
|
|
@ -44,7 +44,9 @@ const makeApiCall = async ({ method, url, body, json = true }) => {
|
|||
return handleError(`${url}: Bad Request`)
|
||||
case 403:
|
||||
// reload the page incase the token has expired
|
||||
if (!url.includes("self")) {
|
||||
location.reload()
|
||||
}
|
||||
return handleError(`${url}: Forbidden`)
|
||||
default:
|
||||
if (response.status >= 200 && response.status < 400) {
|
||||
|
|
Loading…
Reference in New Issue