UDT-002: Logout + Refresh Token con rotación y chain revocation #3

Merged
dmolinari merged 36 commits from feature/UDT-002 into main 2026-04-14 17:37:47 +00:00
Showing only changes of commit 96dbeecc0f - Show all commits

View File

@@ -64,8 +64,8 @@ axiosClient.interceptors.response.use(
status !== 401 ||
!original ||
original._retry ||
url.includes('/auth/refresh') ||
url.includes('/auth/login')
url.endsWith('/auth/refresh') ||
url.endsWith('/auth/login')
) {
return Promise.reject(error)
}