Files
mozo-backend/app/controllers/errors_controller.rb
T
2026-02-10 11:38:56 -05:00

6 lines
137 B
Ruby

class ErrorsController < ApplicationController
def not_found
head :not_found # Renders an empty body with 404 status [5]
end
end