We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my routes, I have:
Rails.application.routes.draw do filter :pagination, :uuid, :locale end get 'lab' => 'experiments#lab'
however, I got routing error if I tried to visit a route of non-existing locale, like for example: /ko/lab
/ko/lab
any idea?
The text was updated successfully, but these errors were encountered:
This seems like you may have your get in the wrong location. First, try moving up into the routes:
get
Rails.application.routes.draw do filter :pagination, :uuid, :locale get 'lab' => 'experiments#lab' end
If that does not work, can you post the output of rails routes ?
rails routes
Sorry, something went wrong.
No branches or pull requests
In my routes, I have:
however, I got routing error if I tried to visit a route of non-existing locale,
like for example:
/ko/lab
any idea?
The text was updated successfully, but these errors were encountered: