Skip to content

Commit 391a245

Browse files
authored
Include base path of provisioner since the provisioning uses a basic http client instead of the proxy due to being configurable at actions level (#35)
1 parent ce47603 commit 391a245

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/token.interceptor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { catchError, EMPTY, from, Observable, switchMap, throwError } from "rxjs
44
import { inject } from "@angular/core";
55
import { Router } from "@angular/router";
66

7-
const PROTECTED_API_PREFIXES = ['/component-catalog', '/projects-api', '/component-provisioner'];
7+
const PROTECTED_API_PREFIXES = ['/component-catalog', '/projects-api', '/component-provisioner', 'https://component-provisioner-devstack'];
88

99
function isProtectedApiRequest(url: string): boolean {
1010
if (PROTECTED_API_PREFIXES.some((prefix) => url.startsWith(prefix))) {

0 commit comments

Comments
 (0)