We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c73952a commit ffd593cCopy full SHA for ffd593c
2 files changed
docs/cookies.md
@@ -25,7 +25,7 @@ Boolean-based configuration is intended to globally enable or disable a specific
25
```ruby
26
config.cookies = {
27
secure: true, # mark all cookies as Secure
28
- httponly: OPT_OUT, # do not mark any cookies as HttpOnly
+ httponly: SecureHeaders::OPT_OUT, # do not mark any cookies as HttpOnly
29
}
30
```
31
docs/upgrading-to-6-0.md
@@ -5,7 +5,7 @@ The original implementation of name overrides worked by making a copy of the def
5
6
class ApplicationController < ActionController::Base
7
Configuration.default do |config|
8
- config.x_frame_options = OPT_OUT
+ config.x_frame_options = SecureHeaders::OPT_OUT
9
end
10
11
SecureHeaders::Configuration.override(:dynamic_override) do |config|
0 commit comments