2014-11-06 14:46:59 +01:00
|
|
|
class ApplicationController < ActionController::Base
|
|
|
|
protect_from_forgery with: :exception
|
2014-12-09 17:17:11 +01:00
|
|
|
|
2014-12-15 19:43:02 +01:00
|
|
|
rescue_from CanCan::AccessDenied do |exception|
|
2019-04-08 16:41:19 +02:00
|
|
|
respond_to do |format|
|
|
|
|
format.json { render json: [ "Diefstal is een misdrijf." ], status: :forbidden }
|
|
|
|
format.html { redirect_to root_path, flash: { error: message_for(exception) } }
|
|
|
|
end
|
2014-12-15 19:43:02 +01:00
|
|
|
end
|
|
|
|
|
2014-12-09 17:17:11 +01:00
|
|
|
def after_sign_in_path_for(resource)
|
2014-12-09 17:28:24 +01:00
|
|
|
root_path
|
2014-12-09 17:17:11 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def after_sign_up_path_for(resource)
|
2015-01-15 00:39:34 +01:00
|
|
|
root_path
|
2014-12-09 17:17:11 +01:00
|
|
|
end
|
2016-02-29 11:27:05 +01: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 14:46:59 +01:00
|
|
|
end
|