@telia-ace/alliance-portal 1.0.6-next.2 → 1.0.6-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -47,6 +47,10 @@ async function startPortal() {
|
|
|
47
47
|
logger.trace({ msg: 'added user to database, if it did not already exist' });
|
|
48
48
|
}
|
|
49
49
|
catch { }
|
|
50
|
+
// FUTURE TODO: Implement some external storage for sessions, such as redis
|
|
51
|
+
// Temporary - With this the stored session cookie gets too big
|
|
52
|
+
// @ts-ignore
|
|
53
|
+
delete session.access_token;
|
|
50
54
|
return session;
|
|
51
55
|
},
|
|
52
56
|
}));
|