Sha256: 9c3267ff707642a32f5cc5cb7394748987e1a97a338b9c77ab90e63ba0085100

Contents?: true

Size: 600 Bytes

Versions: 4

Compression:

Stored size: 600 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 => '_spree_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

4 entries across 4 versions & 1 rubygems

Version Path
spree-0.0.6 starter-app/app/controllers/application.rb
spree-0.0.5 starter-app/app/controllers/application.rb
spree-0.0.8 starter-app/app/controllers/application.rb
spree-0.0.7 starter-app/app/controllers/application.rb