aboutsummaryrefslogtreecommitdiffstats
path: root/ui-react/src/api/LoopActionService.js
diff options
context:
space:
mode:
authorSébastien Determe <sebastien.determe@intl.att.com>2020-08-03 13:56:26 +0000
committerGerrit Code Review <gerrit@onap.org>2020-08-03 13:56:26 +0000
commit7bb6438727bf6bc91d8471bcf00e4736c691ae1b (patch)
treee7617388af045b9c36ec16afe3bc59db91d215f4 /ui-react/src/api/LoopActionService.js
parentcaf78ac9ef48e7afacbfbd14f7b6dc1c9cecc992 (diff)
parente673a058c995392b3ad6cbab91a9571bed29a57b (diff)
Merge "Clamp react ui to use url pathname dynamically instead of hardcoded prefix for calling apis"
Diffstat (limited to 'ui-react/src/api/LoopActionService.js')
-rw-r--r--ui-react/src/api/LoopActionService.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-react/src/api/LoopActionService.js b/ui-react/src/api/LoopActionService.js
index 7cea3ff9f..bff812a2f 100644
--- a/ui-react/src/api/LoopActionService.js
+++ b/ui-react/src/api/LoopActionService.js
@@ -26,7 +26,7 @@ export default class LoopActionService{
static performAction(cl_name, uiAction) {
console.info("LoopActionService perform action: " + uiAction + " closedloopName=" + cl_name);
const svcAction = uiAction.toLowerCase();
- return fetch("/restservices/clds/v2/loop/" + svcAction + "/" + cl_name, {
+ return fetch(window.location.pathname + "restservices/clds/v2/loop/" + svcAction + "/" + cl_name, {
method: 'PUT',
credentials: 'same-origin'
})
@@ -51,7 +51,7 @@ export default class LoopActionService{
static refreshStatus(cl_name) {
console.info("Refresh the status for closedloopName=" + cl_name);
- return fetch("/restservices/clds/v2/loop/getstatus/" + cl_name, {
+ return fetch(window.location.pathname + "restservices/clds/v2/loop/getstatus/" + cl_name, {
method: 'GET',
credentials: 'same-origin'
})