plugins-functionality #10

Merged
argiro.kokogiannaki merged 36 commits from plugins-functionality into develop 2024-06-13 09:32:44 +02:00
1 changed files with 11 additions and 0 deletions
Showing only changes of commit a4a592e248 - Show all commits

View File

@ -30,6 +30,17 @@ export class ManageZenodoCommunitiesService {
}
updateMasterZCommunity(properties:EnvProperties, pid: string,zenodoid: string) {
const options = {
headers: new HttpHeaders({
'Content-Type': 'application/json',
})
};
let url = properties.communityAPI+pid;
return this.http.post<any>(url, {mainZenodoCommunity:zenodoid}, options);
//.map(res => <any> res.json())
}
}