Skip to content

Commit a6f022c

Browse files
NicolasDorierShahanaFarooqui
authored andcommitted
Remove cookie signature (Ride-The-Lightning#62)
1 parent 6ed9baf commit a6f022c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controllers/authenticate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var logger = require('./logger');
88

99
exports.authenticateUserWithCookie = (req, res, next) => {
1010
if(+common.rtl_sso) {
11-
res.cookie('access-key', req.query['access-key'], { signed: true, httpOnly: true, sameSite: true, secure: true });
11+
res.cookie('access-key', req.query['access-key'], { httpOnly: true, sameSite: true, secure: true });
1212
res.set(
1313
{
1414
'Cache-Control': 'private, no-cache'

0 commit comments

Comments
 (0)