From b221a623985f36d1523eae60834bf3e22a7522f4 Mon Sep 17 00:00:00 2001 From: "sofia.baltzi" Date: Wed, 31 Jan 2018 10:11:12 +0000 Subject: [PATCH] Fix link for number of publications git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-connect-portal/trunk@50513 d315682c-612b-4755-9ff5-7f18f6832af3 --- src/app/community/community.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/community/community.service.ts b/src/app/community/community.service.ts index 8300a88..9c9d3cc 100644 --- a/src/app/community/community.service.ts +++ b/src/app/community/community.service.ts @@ -10,7 +10,7 @@ export class CommunityService { } getNumberOfPublications() { - return this.http.get('http://rudie.di.uoa.gr:8080/dnet-functionality-services-2.0.0-SNAPSHOT/rest/v2/api/publications/count?format=json') + return this.http.get('http://rudie.di.uoa.gr:8080/dnet-functionality-services-2.0.0-SNAPSHOT/rest/v2/api/publications/count?format=json&fq=communityid=egi') .map(res => res.json()).do(res => {console.log(res)}); }