From 8cef7fa1839f619c5c7da4fa88647184fa998170 Mon Sep 17 00:00:00 2001 From: fsdavid <daviti1@mail.com> Date: Wed, 27 Oct 2021 16:57:36 +0200 Subject: [PATCH] Fix public methods --- src/util/pureConstant.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/pureConstant.service.ts b/src/util/pureConstant.service.ts index 89f449b4d..eda57b617 100644 --- a/src/util/pureConstant.service.ts +++ b/src/util/pureConstant.service.ts @@ -275,7 +275,7 @@ Raise/track issues at github repo: <a target = "_blank" href = "${this.repoUrl}" ) } - public getParcs(atlasId: string){ + private getParcs(atlasId: string){ return this.http.get<TParc[]>( `${this.bsEndpoint}/atlases/${encodeURIComponent(atlasId)}/parcellations`, { responseType: 'json' } @@ -291,7 +291,7 @@ Raise/track issues at github repo: <a target = "_blank" href = "${this.repoUrl}" ) } - public getSpaces(atlasId: string){ + private getSpaces(atlasId: string){ return this.http.get<TSpaceSummary[]>( `${this.bsEndpoint}/atlases/${encodeURIComponent(atlasId)}/spaces`, { responseType: 'json' } -- GitLab