Skip to content
Snippets Groups Projects
Commit 926252f8 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

project name in endpoint hardcoded

parent 962ef514
No related branches found
No related tags found
2 merge requests!347Merge 18.0.8,!344Resolve "removing overlay does not work"
Pipeline #99247 passed with warnings
minerva-front (18.0.8) stable; urgency=medium
* Bug fix: data overlay removal did not work (#333)
-- Piotr Gawron <piotr.gawron@uni.lu> Fri, 13 Dec 2024 13:00:00 +0200
minerva-front (18.0.7) stable; urgency=medium
* Bug fix: export to image did not include overlays (#326)
* Bug fix: missing logos added (#329)
......
......@@ -84,7 +84,7 @@ export const apiPath = {
}): string =>
`projects/${PROJECT_ID}/overlays/?creator=${creator}&publicOverlay=${String(publicOverlay)}`,
updateOverlay: (overlayId: number): string => `projects/${PROJECT_ID}/overlays/${overlayId}/`,
removeOverlay: (overlayId: number): string => `projects/pdmap_appu_test/overlays/${overlayId}/`,
removeOverlay: (overlayId: number): string => `projects/${PROJECT_ID}/overlays/${overlayId}/`,
downloadElementsCsv: (): string =>
`projects/${PROJECT_ID}/models/*/bioEntities/elements/:downloadCsv`,
downloadOverlay: (overlayId: number): string =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment