[angular-16-irish-monitor | WIP] logService: rename property

This commit is contained in:
argirok 2023-11-28 18:49:42 +02:00
parent f27b8e11f7
commit f853d96ed4
1 changed files with 3 additions and 3 deletions

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) );
}
}