From 48acca107b9bd7a59bacb1449b042eb753e63917 Mon Sep 17 00:00:00 2001 From: elijah Date: Wed, 30 Mar 2016 17:06:32 -0700 Subject: api: return proper 404 for GET /1/identities/:id.json --- app/controllers/controller_extension/errors.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'app/controllers/controller_extension') diff --git a/app/controllers/controller_extension/errors.rb b/app/controllers/controller_extension/errors.rb index 2b68955..3d919b0 100644 --- a/app/controllers/controller_extension/errors.rb +++ b/app/controllers/controller_extension/errors.rb @@ -6,16 +6,19 @@ module ControllerExtension::Errors def access_denied render_error :not_authorized, :forbidden, home_url end + alias_method :render_access_denied, :access_denied def login_required # Warden will intercept the 401 response and call # SessionController#unauthenticated instead. render_error :not_authorized_login, :unauthorized, login_url end + alias_method :render_login_required, :login_required def not_found(msg=nil, url=nil) render_error(msg || :not_found, :not_found, url || home_url) end + alias_method :render_not_found, :not_found private -- cgit v1.2.3