module ActionController::ForceSSL::ClassMethods

def force_ssl(options = {})

:nodoc:
def force_ssl(options = {})
  ActiveSupport::Deprecation.warn(<<-MESSAGE.squish)
    Controller-level `force_ssl` is deprecated and will be removed from
    Rails 6.1. Please enable `config.force_ssl` in your environment
    configuration to enable the ActionDispatch::SSL middleware to more
    fully enforce that your application communicate over HTTPS. If needed,
    you can use `config.ssl_options` to exempt matching endpoints from
    being redirected to HTTPS.
  MESSAGE
  action_options = options.slice(*ACTION_OPTIONS)
  redirect_options = options.except(*ACTION_OPTIONS)
  before_action(action_options) do
    force_ssl_redirect(redirect_options)
  end
end