From 1dbce23e133f63c14920dfea933ebcdb03b43d7b Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Tue, 31 Oct 2023 12:35:01 +0200 Subject: [PATCH] [develop | DONE | FIXED] environment.prod.ts: In claimsAPIURL property call production API, not beta. --- explore/src/environments/environment.prod.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/explore/src/environments/environment.prod.ts b/explore/src/environments/environment.prod.ts index cd56ccbc..8af1d9ba 100644 --- a/explore/src/environments/environment.prod.ts +++ b/explore/src/environments/environment.prod.ts @@ -15,7 +15,7 @@ import {common, commonProd} from "../app/openaireLibrary/utils/properties/enviro statisticsFrameNewAPIURL: "https://services.openaire.eu/stats-tool/", bipFrameAPIURL: "https://bip.imsi.athenarc.gr/api/impact-chart?id=", useNewStatistisTool: true, - claimsAPIURL: "https://beta.services.openaire.eu/claims-new/rest/claimsService/", + claimsAPIURL: "https://services.openaire.eu/claims-new/rest/claimsService/", searchAPIURLLAst: "https://services.openaire.eu/search/v2/api/", searchResourcesAPIURL: "https://services.openaire.eu/search/v2/api/resources", openCitationsAPIURL: "https://services.openaire.eu/opencitations/getCitations?id=", @@ -135,4 +135,4 @@ import {common, commonProd} from "../app/openaireLibrary/utils/properties/enviro export let properties: EnvProperties = { ...props, ...common, ...commonProd -} \ No newline at end of file +}