Methods

Class/Module Index [+]

Quicksearch

ActionController::ForceSSL::ClassMethods

Public Instance Methods

force_ssl(options = {}) click to toggle source

Force the request to this particular controller or specified actions to be under HTTPS protocol.

Note that this method will not be effective on development environment.

Options

  • only - The callback should be run only for this action

  • <tt>except<tt> - The callback should be run for all actions except this action

# File lib/action_controller/metal/force_ssl.rb, line 26
def force_ssl(options = {})
  before_filter(options) do
    if !request.ssl? && !Rails.env.development?
      redirect_to :protocol => 'https://', :status => :moved_permanently
    end
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.