File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export class AuthService {
59
59
async logout ( req : Request ) {
60
60
const logoutURL = this . configService . get < string > ( "logoutURL" ) || "" ;
61
61
const expressSessionSecret = this . configService . get < string > (
62
- "expressSessionSecret " ,
62
+ "expressSession.secret " ,
63
63
) ;
64
64
65
65
const logoutResult = await this . additionalLogoutTasks ( req , logoutURL ) ;
Original file line number Diff line number Diff line change @@ -186,7 +186,6 @@ const configuration = () => {
186
186
secret : process . env . EXPRESS_SESSION_SECRET ,
187
187
store : process . env . EXPRESS_SESSION_STORE ,
188
188
} ,
189
- expressSessionSecret : process . env . EXPRESS_SESSION_SECRET ,
190
189
functionalAccounts : [ ] ,
191
190
httpMaxRedirects : process . env . HTTP_MAX_REDIRECTS ?? 5 ,
192
191
httpTimeOut : process . env . HTTP_TIMEOUT ?? 5000 ,
You can’t perform that action at this time.
0 commit comments