Sha256: cf6f35a2213b067f8525e73c40321ed843a416c46423e0f904ae3b601b900170
Contents?: true
Size: 604 Bytes
Versions: 1
Compression:
Stored size: 604 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
railscart-0.0.4 | starter_app/app/controllers/application.rb |