Merge branch 'new-api' of code-repo.d4science.org:MaDgIK/openaire-library into new-api

This commit is contained in:
argirok 2023-10-04 16:05:55 +03:00
commit 3a9a5df12e
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ export class SearchCommunityProjectsService {
constructor(private http: HttpClient ) {}
searchProjects (properties:EnvProperties, pid: string, page=1, size=500):any {
this.searchProjectsWithPaging(properties,pid,page, size, null, null);
return this.searchProjectsWithPaging(properties,pid,page, size, null, null);
}
searchProjectsWithPaging (properties:EnvProperties, pid: string, page=1, size=500, searchFilter, funder, orderBy = "name"):any {
let params = funder ? ["funder="+ funder] :[];