Add basic set of error pages
Some checks failed
/ Run tests (push) Failing after 1m10s
/ Run system tests (push) Failing after 1m15s
/ Build, push and deploy image (push) Has been skipped

This commit is contained in:
david 2024-11-01 13:16:26 +01:00
parent 823284d6ba
commit d649dc7da3
10 changed files with 115 additions and 41 deletions

View file

@ -0,0 +1,7 @@
# frozen_string_literal: true
class ErrorPagesController < ApplicationController
def not_found; end
def unprocessable_content; end
def internal_server_error; end
end