From f853d96ed499e917e4e726bf5a82f26e29dbb326 Mon Sep 17 00:00:00 2001 From: argirok Date: Tue, 28 Nov 2023 18:49:42 +0200 Subject: [PATCH] [angular-16-irish-monitor | WIP] logService: rename property --- utils/log/log.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/log/log.service.ts b/utils/log/log.service.ts index 216e0931..a4c83c8e 100644 --- a/utils/log/log.service.ts +++ b/utils/log/log.service.ts @@ -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) ); } }