Fixes not being able to find the 404 page file

This commit is contained in:
Brenda Wallace
2019-01-01 13:42:53 +13:00
parent c7ad7bcc70
commit f4df42d136

View File

@@ -20,7 +20,7 @@ class ApplicationController < ActionController::Base
end
def not_found
render file: 'app/views/errors/404', status: :not_found, layout: false
render file: 'app/views/errors/404.html', status: :not_found, layout: false
end
def after_sign_in_path_for(_resource)