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
rails generate scaffold api/user email:uniq password:digest --api
app/views/api/users/index.json.jbuilder
api_users/api_user
api/users/api_user
The partial references should be api/users/api_user
The partial referenced is api_users/api_user, which doesn't exist.
Rails version: Rails 6.0.1
Ruby version: ruby 2.6.5p114 (2019-10-01 revision 67812) [x64-mingw32]
The text was updated successfully, but these errors were encountered:
(Cross-refs #492)
Sorry, something went wrong.
No branches or pull requests
Steps to reproduce
rails generate scaffold api/user email:uniq password:digest --api
app/views/api/users/index.json.jbuilder
, it referencesapi_users/api_user
, notapi/users/api_user
Expected behavior
The partial references should be
api/users/api_user
Actual behaviora
The partial referenced is
api_users/api_user
, which doesn't exist.System configuration
Rails version: Rails 6.0.1
Ruby version: ruby 2.6.5p114 (2019-10-01 revision 67812) [x64-mingw32]
The text was updated successfully, but these errors were encountered: