Skip to content
Snippets Groups Projects
Commit 8cef7fa1 authored by fsdavid's avatar fsdavid
Browse files

Fix public methods

parent 3a3f0972
No related branches found
No related tags found
No related merge requests found
......@@ -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' }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment