Merge Angular 16 Irish Monitor to develop #33

Merged
k.triantafyllou merged 151 commits from angular-16-irish-monitor into develop 2024-02-13 09:32:41 +01:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit f853d96ed4 - Show all commits

View File

@ -36,12 +36,12 @@ export class LogService {
}
logUploadDOIs(properties: EnvProperties, dois:number){
return this.http.post(properties.logFilesService, new UploadLog(dois) );
return this.http.post(properties.logServiceUrl, new UploadLog(dois) );
}
logLink(properties: EnvProperties){
return this.http.post(properties.logFilesService, new LinkLog() );
return this.http.post(properties.logServiceUrl, new LinkLog() );
}
logOrcidLink(properties: EnvProperties, action:'added'|'removed', title: string, doi: string){
return this.http.post(properties.logFilesService, new OrcidLinkLog(action, title, doi) );
return this.http.post(properties.logServiceUrl, new OrcidLinkLog(action, title, doi) );
}
}