Sha256: ba93b9e1a0223a30951b358b092a74567ed4b0bdb7f0d25e86c6a9cd087d01b1
Contents?: true
Size: 880 Bytes
Versions: 1
Compression:
Stored size: 880 Bytes
Contents
Rails.application.routes.draw do root to: "application#home" get "/limit_session_lifetime_home" => "limit_session_lifetime#home", :as => :limit_session_lifetime_home get "/limit_session_lifetime_redirect_home" => "limit_session_lifetime#redirect_home" get "/bind_session_to_ip_address_home" => "bind_session_to_ip_address#home", :as => :bind_session_to_ip_address_home get "/bind_session_to_ip_address_redirect_home" => "bind_session_to_ip_address#redirect_home" get "/combined_controller_home" => "combined#home", :as => :combined_home get "/combined_controller_redirect_home" => "combined#redirect_home" get "/customized_controller_home" => "customized_on_invalid_session#home", :as => :customized_controller_home end class ApplicationController < ActionController::Base protect_from_forgery with: :exception def home render text: "testing" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
frikandel-2.1.0 | spec/support/application_controller.rb |