mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
5 lines
177 B
Ruby
5 lines
177 B
Ruby
class ErrorsController < ApplicationController
|
|
def routing
|
|
not_found(ActionController::RoutingError.new("No route matches [#{request.method}] #{request.path}"))
|
|
end
|
|
end
|