Sha256: 2dca90b9ae14135f8254e1c72ff0355070e64ba460f3caed5fde47c8b7d9922a

Contents?: true

Size: 603 Bytes

Versions: 3

Compression:

Stored size: 603 Bytes

Contents

# Filters added to this controller apply to all controllers in the application.
# Likewise, all the methods added will be available for all controllers.

class ApplicationController < ActionController::Base
  # Pick a unique cookie name to distinguish our session data from others'
  session :session_key => '_railscart_session_id'

  # See ActionController::RequestForgeryProtection for details
  # Uncomment the :secret if you're not using the cookie session store
  protect_from_forgery :secret => '55a66755bef2c41d411bd5486c001b16'

  include AuthenticatedSystem
  include RoleRequirementSystem
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
railscart-0.0.1 starter-app/app/controllers/application.rb
railscart-0.0.2 starter_app/app/controllers/application.rb
railscart-0.0.3 starter_app/app/controllers/application.rb