From f4df42d136f2e5650608baed7aa0378fd75ab247 Mon Sep 17 00:00:00 2001 From: Brenda Wallace Date: Tue, 1 Jan 2019 13:42:53 +1300 Subject: [PATCH] Fixes not being able to find the 404 page file --- app/controllers/application_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 9ef6783e5..023603b33 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -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)