commit | 26244a78ea2f8a2dbc9f76f6283db9119d122680 | [log] [tgz] |
---|---|---|
author | Akron <nils@diewald-online.de> | Wed Apr 28 00:17:56 2021 +0200 |
committer | Akron <nils@diewald-online.de> | Thu May 06 09:52:35 2021 +0200 |
tree | 8e9c415324dd15ac00ef7f6b691d712590391f91 | |
parent | e5bd35a302c920420cd8d5376f94f417078065c8 [diff] [blame] |
Change samesite cookie value to 'none' to allow for session riding Change-Id: I2302ab48b4bc3ab333ff582a952853409a48471f
diff --git a/lib/Kalamar.pm b/lib/Kalamar.pm index 7931870..a4893ad 100644 --- a/lib/Kalamar.pm +++ b/lib/Kalamar.pm
@@ -82,6 +82,9 @@ # ... for cookie transport $self->sessions->secure(1); + # Temporary for session riding + $self->sessions->samesite('None'); + # For all pages $self->hook( before_dispatch => sub {