Rails routing question: how to pass a hash property to a generated resource?
- by SergioB
say I have this on my routes.rb:
resources :accounts
which gives me, among other things:
new_account GET /account/new
I need to generate this (for example) "/account/new#test"
How do you pass the "#test" to new_account_path() ?