[angular-16-irish-monitor | WIP] logService: rename property
This commit is contained in:
parent
f27b8e11f7
commit
f853d96ed4
|
@ -36,12 +36,12 @@ export class LogService {
|
||||||
}
|
}
|
||||||
|
|
||||||
logUploadDOIs(properties: EnvProperties, dois:number){
|
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){
|
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){
|
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) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue