Sha256: d78d64851166e8194839d24503d62ec04f988656cc9d0422f8d775280fc6eb8c

Contents?: true

Size: 521 Bytes

Versions: 1

Compression:

Stored size: 521 Bytes

Contents

Rails.application.routes.draw do
  root to: "application#home"
  get "/limit_session_lifetime_home" => "limit_session_lifetime#home"
  get "/customized_controller_home" => "customized_on_invalid_session#home", as: :customized_controller_home
  get "/bind_session_to_ip_address_home" => "bind_session_to_ip_address#home"
  get "/combined_controller_home" => "combined#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.0.0 spec/support/application_controller.rb