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
If you want to disable the format in Devise routes, this should work (based on comments in source code):
devise_for :users, format: false
However it seems that it doesn't have any effects.
It should remove the format part from routes.
format
The only workaround that I found is currently this (which works properly):
scope format: false do devise_for :users end
The text was updated successfully, but these errors were encountered:
I can confirm the same behavior. @collimarco Thanks for the workaround 🤝
Sorry, something went wrong.
No branches or pull requests
Environment
Current behavior
If you want to disable the format in Devise routes, this should work (based on comments in source code):
However it seems that it doesn't have any effects.
Expected behavior
It should remove the
format
part from routes.Current workaround
The only workaround that I found is currently this (which works properly):
The text was updated successfully, but these errors were encountered: