2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2016-06-30 08:24:03 +00:00
|
|
|
class ErrorsController < ApplicationController
|
2017-02-24 14:02:30 +00:00
|
|
|
skip_before_action :verify_csrf_token
|
2016-06-30 08:24:03 +00:00
|
|
|
def routing
|
|
|
|
not_found(ActionController::RoutingError.new("No route matches [#{request.method}] #{request.path}"))
|
|
|
|
end
|
|
|
|
end
|