Guest User

Untitled

a guest
Feb 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. map.resources :settings
  2. settings.namespace do |setting|
  3. setting.resources :units
  4. setting.resources :groups
  5. end
  6. end
  7.  
  8. class Settings::Units < SettingsController
  9. end
  10. class Settings::Groups < SettingsController
  11. end
  12.  
  13. link_to 'Groups', settings_groups_path
  14. --> which leads to SettingsController.show, though i expected: Groups.index
Add Comment
Please, Sign In to add comment