tap/app/controllers/application_controller.rb

26 lines
551 B
Ruby
Raw Normal View History

2014-11-06 13:46:59 +00:00
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
2014-12-09 16:17:11 +00:00
2014-12-15 18:43:02 +00:00
rescue_from CanCan::AccessDenied do |exception|
2016-02-29 10:27:05 +00:00
redirect_to root_path, flash: { error: message_for(exception) }
2014-12-15 18:43:02 +00:00
end
2014-12-09 16:17:11 +00:00
def after_sign_in_path_for(resource)
2014-12-09 16:28:24 +00:00
root_path
2014-12-09 16:17:11 +00:00
end
def after_sign_up_path_for(resource)
root_path
2014-12-09 16:17:11 +00:00
end
2016-02-29 10:27:05 +00:00
private
def message_for exception
if exception.subject.class == Order && [:new, :create].include?(exception.action)
"Betaal uw fucking schulden!"
else
exception.message
end
end
2014-11-06 13:46:59 +00:00
end