minor fixes
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-08-13 18:46:56 +03:00
parent 50d07820dc
commit a2d344ceb4
4 changed files with 3 additions and 9 deletions

View File

@@ -45,7 +45,7 @@ if (getEnv() === Env.prod) {
app.use(
session({
store: sessionStore,
secret: randomUUID(),
secret: config.get('sessionSecret') || randomUUID(),
resave: false,
saveUninitialized: false,
cookie: { secure: false },