Module: ActionController::ForceSSL::ClassMethods
- Defined in:
- lib/action_controller/metal/force_ssl.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#force_ssl(options = {}) ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/action_controller/metal/force_ssl.rb', line 19 def force_ssl( = {}) ActiveSupport::Deprecation.warn(" Controller-level `force_ssl` is deprecated and will be removed from\n Rails 6.1. Please enable `config.force_ssl` in your environment\n configuration to enable the ActionDispatch::SSL middleware to more\n fully enforce that your application communicate over HTTPS. If needed,\n you can use `config.ssl_options` to exempt matching endpoints from\n being redirected to HTTPS.\n MESSAGE\n\n action_options = options.slice(*ACTION_OPTIONS)\n redirect_options = options.except(*ACTION_OPTIONS)\n before_action(action_options) do\n force_ssl_redirect(redirect_options)\n end\nend\n".squish) |