Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jdickey/0030c4a7f7aee70f70ab to your computer and use it in GitHub Desktop.

Select an option

Save jdickey/0030c4a7f7aee70f70ab to your computer and use it in GitHub Desktop.
# Base class for all controllers in the application, Including additional code
# shared between all controllers that is not part of `ActionController::Base`.
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment