a11yist/app/controllers/error_pages_controller.rb
david d649dc7da3
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
Add basic set of error pages
2024-11-01 13:16:26 +01:00

7 lines
173 B
Ruby

# frozen_string_literal: true
class ErrorPagesController < ApplicationController
def not_found; end
def unprocessable_content; end
def internal_server_error; end
end