MENUREADME | How to run locally | REST API doc | Web app screenshots
Eighteen versions (gradually implemented) of a Web and REST API app made with Ruby on Rails that aims to get the most out of the MVC/Rails Way.
| Branch | 033-resources-within-namespaces_mailers-under-entity-context |
| Lines of Code | 1356 |
| Rubycritic Score | 91.56 |
This version continues system cohesion improvement by moving user mailer views from app/views/user_mailers to app/views/user/mailers.
app/views/user ├── mailers │ ├── email_confirmation.html.erb │ ├── email_confirmation.text.erb │ ├── reset_password.html.erb │ └── reset_password.text.erb ├── passwords/ ├── profiles/ ├── registrations/ ├── sessions/ ├── shared/ └── tokens/Because the mailer views are now located under the user entity context.
Aiming to increase cohesion, the next version will add another nested namespace to isolate all user settings resources.
Next version: 034-resources-within-namespaces_nested-namespaces.
To understand the project's context, I'd like you to please read the main branch's README.
Check out the:
- disclaimer to understand the project's purpose.
- summary of all branches.