Skip to content

Commit b7d7846

Browse files
Merge pull request #11 from Crowdhandler/maintenance/soften-cookie-flags-to-enable-backup-cookie-via-js
HttpOnly flag removed from cookie set. We are doing this as a risk vs…
2 parents 5ffe526 + eaddc44 commit b7d7846

5 files changed

Lines changed: 1 addition & 2 deletions

File tree

dist/originOverride.zip

-11 Bytes
Binary file not shown.

dist/viewerRequest.zip

-15 Bytes
Binary file not shown.

dist/viewerResponse.zip

-9 Bytes
Binary file not shown.

helpers/http.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export const redirect302Response = function (redirect_location, token) {
152152
"set-cookie": [
153153
{
154154
key: "Set-Cookie",
155-
value: `crowdhandler=${token}; path=/; Secure; HttpOnly`,
155+
value: `crowdhandler=${token}; path=/; Secure`,
156156
},
157157
],
158158
"cache-control": [

serverless.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# Happy Coding!
1313

1414
service: crowdhandler-cloudfront-integration
15-
frameworkVersion: '2'
1615

1716
# Webpack
1817
custom:

0 commit comments

Comments
 (0)