From 29d28297c8e0657c99096272822ab13af561721c Mon Sep 17 00:00:00 2001 From: "Vila,Jordi (IT EDP)" Date: Mon, 8 Jun 2026 14:59:06 +0200 Subject: [PATCH] Include base path of provisioner since the provisioning uses a basic http client instead of the proxy due to being configurable at actions level --- src/app/token.interceptor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/token.interceptor.ts b/src/app/token.interceptor.ts index 65e18d0..9a400d0 100644 --- a/src/app/token.interceptor.ts +++ b/src/app/token.interceptor.ts @@ -4,7 +4,7 @@ import { catchError, EMPTY, from, Observable, switchMap, throwError } from "rxjs import { inject } from "@angular/core"; import { Router } from "@angular/router"; -const PROTECTED_API_PREFIXES = ['/component-catalog', '/projects-api', '/component-provisioner']; +const PROTECTED_API_PREFIXES = ['/component-catalog', '/projects-api', '/component-provisioner', 'https://component-provisioner-devstack']; function isProtectedApiRequest(url: string): boolean { if (PROTECTED_API_PREFIXES.some((prefix) => url.startsWith(prefix))) {