blob: 8f8eddefcba870babe2f1703f639e7c91df6afa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
module ControllerExtension::Errors
extend ActiveSupport::Concern
protected
def access_denied
respond_to_error :not_authorized, :forbidden, home_url
end
def login_required
# Warden will intercept the 401 response and call
# SessionController#unauthenticated instead.
respond_to_error :not_authorized_login, :unauthorized, login_url
end
def not_found
respond_to_error :not_found, :not_found, home_url
end
def respond_to_error(message, status=nil, redirect=nil)
error = message
message = t(message) if message.is_a?(Symbol)
respond_to do |format|
format.html do
redirect_to redirect, alert: message
end
format.json do
status ||= :unprocessable_entity
render json: {error: error, message: message}, status: status
end
end
end
end
|