camerican / Help-Desk

Help Desk for NYCDA Projects
1 stars 1 forks source link

Routing; controller not found #25

Closed jamessullivan77 closed 7 years ago

jamessullivan77 commented 7 years ago

The items controller is not found for my project.

camerican commented 7 years ago

We determined the routing issue was caused to to a pluralization issue. The following routing:

resources :items

will attempt to access a pluralized controller name: items_controller along with a views folder called items. By changing the controller file name and class name to match, we were able to resolve this issue.