a11yist/app/controllers/error_pages_controller.rb

8 lines
173 B
Ruby
Raw Normal View History

2024-11-01 13:16:26 +01:00
# frozen_string_literal: true
class ErrorPagesController < ApplicationController
def not_found; end
def unprocessable_content; end
def internal_server_error; end
end