X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2f9291ba5764fe104264ae7e3b6a361e11212e8b..b3759c0d5811579a2a409b9c8c218d605cb62aa4:/app/controllers/errors_controller.rb diff --git a/app/controllers/errors_controller.rb b/app/controllers/errors_controller.rb index 3bc958615..ee1fcca6f 100644 --- a/app/controllers/errors_controller.rb +++ b/app/controllers/errors_controller.rb @@ -3,15 +3,26 @@ class ErrorsController < ApplicationController skip_authorization_check + before_action :set_locale + 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