Fix missing error templates for non-HTML requests (#12593)
parent
ab91e7480b
commit
7ee6f51b78
|
@ -136,6 +136,6 @@ class ApplicationController < ActionController::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def respond_with_error(code)
|
def respond_with_error(code)
|
||||||
render "errors/#{code}", layout: 'error', status: code
|
render "errors/#{code}", layout: 'error', status: code, formats: [:html]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Reference in New Issue