oidcserver: fix login events not being raised for webadmin

we should remove implicit flow at some point . also #844
This commit is contained in:
Girish Ramakrishnan
2025-07-10 13:06:13 +02:00
parent 4db5855b74
commit 820aeee659
2 changed files with 12 additions and 18 deletions

View File

@@ -2,6 +2,7 @@
var tmp = window.location.hash.slice(1).split('&');
// FIXME: implicit flow (response_type=code token) results in access_token query param. this is not secure
tmp.forEach(function (pair) {
if (pair.indexOf('access_token=') === 0) localStorage.token = pair.split('=')[1];
});