0
0
Fork 0

Ignore implied formats for catch all route requests (#1340)

A request to `/test` would show the custom 404 page, but a request to
`/test.test` would return a 404 with an empty body.

This change ignores the format on incoming catch all route requests, so that the
html 404 page is returned on these requests.
This commit is contained in:
Matt Jankowski 2017-04-09 08:39:41 -04:00 committed by Eugen
parent b1881a3d48
commit 71706f21c2
2 changed files with 25 additions and 1 deletions

View file

@ -194,5 +194,8 @@ Rails.application.routes.draw do
root 'home#index'
match '*unmatched_route', via: :all, to: 'application#raise_not_found'
match '*unmatched_route',
via: :all,
to: 'application#raise_not_found',
format: false
end