tap/app/controllers/application_controller.rb
2015-03-20 02:21:56 +01:00

18 lines
444 B
Ruby

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 CanCan::AccessDenied do |exception|
redirect_to root_path, flash: { error: exception.message }
end
def after_sign_in_path_for(resource)
root_path
end
def after_sign_up_path_for(resource)
root_path
end
end