ix syntax error
Some checks failed
/ Run tests (push) Successful in 1m33s
/ Run system tests (push) Failing after 2m2s
/ Build, push and deploy image (push) Successful in 1m30s

This commit is contained in:
david 2024-11-11 07:33:49 +01:00
parent f808221a7a
commit 2b5d37295f

View file

@ -11,7 +11,7 @@ class ErrorPagesController < ApplicationController
# 403 :forbidden
def forbidden; end
# 404 :not_found
def not_found;
def not_found; end
# 405 :method_not_allowed
def method_not_allowed; end
# 406 :not_acceptable
@ -39,7 +39,7 @@ class ErrorPagesController < ApplicationController
# 417 :expectation_failed
def expectation_failed; end
# 422 :unprocessable_entity
def unprocessable_entity;
def unprocessable_entity; end
# 423 locked
def locked; end
# 424 :failed_dependency
@ -49,7 +49,7 @@ class ErrorPagesController < ApplicationController
# 5xx Server Error
# 500 :internal_server_error
def internal_server_error;
def internal_server_error; end
# 501 not_implemented
def not_implemented; end
# 502 :bad_gateway