Basis of rails-driven app for local business
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

15 lines
720 B

  1. # Filters added to this controller apply to all controllers in the application.
  2. # Likewise, all the methods added will be available for all controllers.
  3. class ApplicationController < ActionController::Base
  4. helper :all # include all helpers, all the time
  5. # See ActionController::RequestForgeryProtection for details
  6. # Uncomment the :secret if you're not using the cookie session store
  7. protect_from_forgery # :secret => '0ea1a518f5fd584e804558c939bdad9b'
  8. # See ActionController::Base for details
  9. # Uncomment this to filter the contents of submitted sensitive data parameters
  10. # from your application log (in this case, all fields with names like "password").
  11. # filter_parameter_logging :password
  12. end