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