aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/framework/src
diff options
context:
space:
mode:
authorAijana Schumann <aijana.schumann@highstreet-technologies.com>2020-10-09 09:17:40 +0200
committerAijana Schumann <aijana.schumann@highstreet-technologies.com>2020-10-09 09:17:40 +0200
commit904552c5e9bc395260319fe50cc0760043f98ba5 (patch)
tree85ef03448b986bd5ab3756b9dca694ec550f829f /sdnr/wt/odlux/framework/src
parent3ef0d18fcb16931a0c93d91ae6fbf8edda09ecc9 (diff)
Fix faulty login
Fix faulty login Issue-ID: CCSDK-2896 Signed-off-by: Aijana Schumann <aijana.schumann@highstreet-technologies.com> Change-Id: I9d5e3450138971986ac39e634ea41620941e1f50
Diffstat (limited to 'sdnr/wt/odlux/framework/src')
-rw-r--r--sdnr/wt/odlux/framework/src/services/applicationApi.ts1
-rw-r--r--sdnr/wt/odlux/framework/src/services/authenticationService.ts2
2 files changed, 2 insertions, 1 deletions
diff --git a/sdnr/wt/odlux/framework/src/services/applicationApi.ts b/sdnr/wt/odlux/framework/src/services/applicationApi.ts
index 77287f497..ff9ef0663 100644
--- a/sdnr/wt/odlux/framework/src/services/applicationApi.ts
+++ b/sdnr/wt/odlux/framework/src/services/applicationApi.ts
@@ -30,6 +30,7 @@ export const onLogin = () => {
}
export const onLogout = () => {
+ document.cookie = "JSESSIONID=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";
logoutEvent.invoke();
}
diff --git a/sdnr/wt/odlux/framework/src/services/authenticationService.ts b/sdnr/wt/odlux/framework/src/services/authenticationService.ts
index cd8a93a53..9b006fc16 100644
--- a/sdnr/wt/odlux/framework/src/services/authenticationService.ts
+++ b/sdnr/wt/odlux/framework/src/services/authenticationService.ts
@@ -49,7 +49,7 @@ class AuthenticationService {
}
public async authenticateUserBasicAuth(email: string, password: string, scope: string): Promise<AuthToken | null> {
- const result = await requestRest<string>(`restconf/modules`, {
+ const result = await requestRest<string>(`rests/data/network-topology:network-topology/topology=topology-netconf?fields=node(node-id)`, {
method: "GET",
headers: {
'Authorization': "Basic " + btoa(email + ":" + password)