From 85320e86539a52e6b1ab5453944dd41f1a7d9d31 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Tue, 13 Feb 2024 12:10:20 +0200 Subject: [PATCH] [develop]: Remove userInfoURL property usage --- explore/src/app/claims/claimsAdmin/claimsAdmin.component.ts | 6 ++---- explore/src/app/claims/myClaims/myClaims.component.ts | 6 ++---- explore/src/app/openaireLibrary | 2 +- explore/src/environments/environment.ts | 3 --- 4 files changed, 5 insertions(+), 12 deletions(-) diff --git a/explore/src/app/claims/claimsAdmin/claimsAdmin.component.ts b/explore/src/app/claims/claimsAdmin/claimsAdmin.component.ts index 23f4e19b..f0e62128 100644 --- a/explore/src/app/claims/claimsAdmin/claimsAdmin.component.ts +++ b/explore/src/app/claims/claimsAdmin/claimsAdmin.component.ts @@ -4,19 +4,17 @@ import {properties} from "../../../environments/environment"; @Component({ selector: 'openaire-claims-admin', template: ` - + `, }) export class OpenaireClaimsAdminComponent implements OnInit { claimsInfoURL: string; - userInfoURL: string; - + constructor() { } public ngOnInit() { this.claimsInfoURL = properties.claimsInformationLink; - this.userInfoURL = properties.userInfoUrl; } } diff --git a/explore/src/app/claims/myClaims/myClaims.component.ts b/explore/src/app/claims/myClaims/myClaims.component.ts index da297ff1..69131901 100644 --- a/explore/src/app/claims/myClaims/myClaims.component.ts +++ b/explore/src/app/claims/myClaims/myClaims.component.ts @@ -5,20 +5,18 @@ import {properties} from "../../../environments/environment"; @Component({ selector: 'openaire-my-claims', template: ` - + ` }) export class OpenaireMyClaimsComponent implements OnInit { claimsInfoURL: string; - userInfoURL: string; - + constructor() { } public ngOnInit() { this.claimsInfoURL = properties.claimsInformationLink; - this.userInfoURL = properties.userInfoUrl; } } diff --git a/explore/src/app/openaireLibrary b/explore/src/app/openaireLibrary index 1cfe22f4..5195306e 160000 --- a/explore/src/app/openaireLibrary +++ b/explore/src/app/openaireLibrary @@ -1 +1 @@ -Subproject commit 1cfe22f406d3a74ce0cf73a50ec19824331a6447 +Subproject commit 5195306ee6dfd664b207c3536234f43adc39ad33 diff --git a/explore/src/environments/environment.ts b/explore/src/environments/environment.ts index d9747fbf..df57cab5 100644 --- a/explore/src/environments/environment.ts +++ b/explore/src/environments/environment.ts @@ -66,9 +66,6 @@ let props: EnvProperties = { piwikBaseUrl: "https://analytics.openaire.eu/piwik.php?idsite=", piwikSiteId: "6", - loginUrl: "http://mpagasas.di.uoa.gr:19080/login-service/openid_connect_login", - userInfoUrl: "http://mpagasas.di.uoa.gr:19080/login-service/userInfo", - logoutUrl: "http://mpagasas.di.uoa.gr:19080/login-service/openid_logout", cookieDomain: ".di.uoa.gr", feedbackmail: "kostis30fylloy@gmail.com",