I\'m planning to organize my controllers in sails using subfolder but I\'m not sure how to do it. When I tried using like admin/PageController.js and connect it with the rou
Thanks merionebl, its work fine for me and I want to share with all guys my answer derived from merionebl answer.
/config/routes.js
'get /admin/user' : { controller: "Admin/UserController", action: "find", model : 'user', },
My aim is not repeat answer just have upgrade and clear example.
Thanks