X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5fa0aebe9fee869a4a988859dd454a28ee451b97..22946d703a1186d0ec7fb18a663f73855bb49546:/app/controllers/errors_controller.rb diff --git a/app/controllers/errors_controller.rb b/app/controllers/errors_controller.rb index 465194ef9..caadd5121 100644 --- a/app/controllers/errors_controller.rb +++ b/app/controllers/errors_controller.rb @@ -1,15 +1,26 @@ class ErrorsController < ApplicationController layout "error" + skip_authorization_check + def forbidden - render :status => :forbidden + respond_to do |format| + format.html { render :status => :forbidden } + format.any { render :status => :forbidden, :plain => "" } + end end def not_found - render :status => :not_found + respond_to do |format| + format.html { render :status => :not_found } + format.any { render :status => :not_found, :plain => "" } + end end def internal_server_error - render :status => :internal_server_error + respond_to do |format| + format.html { render :status => :internal_server_error } + format.any { render :status => :internal_server_error, :plain => "" } + end end end