Use error pack when rendering error pages. Fixes #305.

This commit is contained in:
David Yip 2018-01-07 13:30:17 -06:00
parent a37e295901
commit 9e5b431655

View file

@ -192,6 +192,7 @@ class ApplicationController < ActionController::Base
format.any { head code } format.any { head code }
format.html do format.html do
set_locale set_locale
use_pack 'error'
render "errors/#{code}", layout: 'error', status: code render "errors/#{code}", layout: 'error', status: code
end end
end end