How to add additional params in url in rails?
        Posted  
        
            by Yuri
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Yuri
        
        
        
        Published on 2010-03-12T08:45:37Z
        Indexed on 
            2010/03/12
            8:47 UTC
        
        
        Read the original article
        Hit count: 382
        
ruby-on-rails
|routes
I have
map.resources :users
And I try to pass additional parameters to helper method to filter output:
users_path(:filter => "female")
It does not work. Why?
© Stack Overflow or respective owner