Sha256: f9e03716c17a87ccfe306c6f0e57f5eb8d14f9b053dd1d65238a783b0a87ee58
Contents?: true
Size: 1.5 KB
Versions: 4
Compression:
Stored size: 1.5 KB
Contents
module Hanami module Config # Security policies are stored here. # # @since 0.3.0 class Security # @since 0.3.0 # @api private # # @see Hanami::Loader#_configure_controller_framework! X_FRAME_OPTIONS_HEADER = 'X-Frame-Options'.freeze # @since 0.3.0 # @api private # # @see Hanami::Loader#_configure_controller_framework! CONTENT_SECURITY_POLICY_HEADER = 'Content-Security-Policy'.freeze # X-Frame-Options headers' value # # @overload x_frame_options(value) # Sets the given value # @param value [String] for X-Frame-Options header. # # @overload x_frame_options # Gets the value # @return [String] X-Frame-Options header's value # # @since 0.3.0 def x_frame_options(value = nil) if value.nil? @x_frame_options else @x_frame_options = value end end # Content-Policy-Security headers' value # # @overload content_security_policy(value) # Sets the given value # @param value [String] for Content-Security-Policy header. # # @overload content_security_policy # Gets the value # @return [String] Content-Security-Policy header's value # # @since 0.3.0 def content_security_policy(value = nil) if value.nil? @content_security_policy else @content_security_policy = value end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
hanami-0.7.3 | lib/hanami/config/security.rb |
hanami-0.7.2 | lib/hanami/config/security.rb |
hanami-0.7.1 | lib/hanami/config/security.rb |
hanami-0.7.0 | lib/hanami/config/security.rb |