We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 623ac24 commit 0664df0Copy full SHA for 0664df0
1 file changed
docs/cookies.md
@@ -52,13 +52,14 @@ config.cookies = {
52
}
53
```
54
55
-`Strict` and `Lax` enforcement modes can also be specified using a Hash.
+`Strict`, `Lax`, and `None` enforcement modes can also be specified using a Hash.
56
57
```ruby
58
config.cookies = {
59
samesite: {
60
strict: { only: ['_rails_session'] },
61
- lax: { only: ['_guest'] }
+ lax: { only: ['_guest'] },
62
+ none: { only: ['_tracking'] },
63
64
65
0 commit comments