Make auth cookie key more unique to avoid collisions with other apps running on the same server.

This commit is contained in:
kristian
2022-09-08 07:33:46 -07:00
parent 8d300d42a4
commit a9adddc0ce
2 changed files with 3 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ module.exports = {
},
/* Key names for cookie identifiers */
cookieKeys: {
AUTH_TOKEN: 'authenticationToken',
AUTH_TOKEN: 'dashyAuthToken',
},
/* Key names for session storage identifiers */
sessionStorageKeys: {