From 53bb0839e76946ff572148ce5b1adcf1e743bfc5 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Thu, 4 Mar 2021 17:41:15 +0000 Subject: [PATCH] [Library | Trunk]: Remove verification urls from white auth list git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@60591 d315682c-612b-4755-9ff5-7f18f6832af3 --- error-interceptor.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/error-interceptor.service.ts b/error-interceptor.service.ts index c8b93296..5b7af411 100644 --- a/error-interceptor.service.ts +++ b/error-interceptor.service.ts @@ -11,7 +11,7 @@ import {isArray} from "util"; @Injectable() export class ErrorInterceptorService implements HttpInterceptor { - private static UNAUTHORIZED_WHITELIST = [properties.userInfoUrl, properties.orcidAPIURL, properties.registryUrl + 'verification/']; + private static UNAUTHORIZED_WHITELIST = [properties.userInfoUrl, properties.orcidAPIURL]; constructor(private router: Router) { }