Skip to content

Instantly share code, notes, and snippets.

@ryenski
Last active December 24, 2015 22:29
Show Gist options
  • Save ryenski/6873414 to your computer and use it in GitHub Desktop.
Save ryenski/6873414 to your computer and use it in GitHub Desktop.
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
rescue_from ActiveRecord::RecordNotFound, :with => :render_404
def render_404
raise "A Page was not found!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment