From 1f808c82940e2d0c48fe8127cdcae6b62f6073e5 Mon Sep 17 00:00:00 2001 From: Marcel Nellesen <nellesen@itc.rwth-aachen.de> Date: Wed, 4 Mar 2020 08:29:55 +0100 Subject: [PATCH] Fix: Fixed path to STS (coscine/issues#725) --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 73b649b..f98e4b1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -144,7 +144,7 @@ function getReturnUrlParam() { function getReturnUrl(method: string) { const returnUrl = encodeURI( - '/coscine/api/Coscine.STS/' + method + '/login?returnUrl=' + getReturnUrlParam(), + '/coscine/api/Coscine.Api.STS/' + method + '/login?returnUrl=' + getReturnUrlParam(), ); return returnUrl; } -- GitLab