Displaying 1 result from an estimated 1 matches for "bogus_action".
2006 Jun 06
2
Routing Priority and Unknown Action
...it gets EVERYTHING).
So assuming I have a controller named "a" with an action named "b" and I
try the URL "/a/b" => all is well.
Then I try "/something/else" => the static controller gets it and deals
with it appropriately.
But then I try "/a/bogus_action" => I get "Unknown Action" Apparently
routing does not ever hand this one off to the Static Controller (where
404 or other appropriate responses reside).
Is this a bug? Is rails really supposed to leave it up to the
controller that doesn''t have a corresponding actio...