How to rename the default identifier param "id" in Rails' map.resources()? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T08:13:37Z http://stackoverflow.com/feeds/question/810385 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/810385/how-to-rename-the-default-identifier-param-id-in-rails-map-resources 2 How to rename the default identifier param "id" in Rails' map.resources()? newtonapple 2009-05-01T06:21:27Z 2009-05-03T00:05:30Z <p>I like all the default routes that are generated by Rail's <strong>map.resources</strong>. But, there are cases where I would like to use a non-numeric identifier in my routes. For example, If have a nested route consist of users and their articles, a standard route could be written as such:</p> <pre><code>map.resources :users, :has_many =&gt; [:articles] # =&gt; e.g. '/users/:id/articles/:id' </code></pre> <p>However, there are many advantages / reasons not to use the default numerical identifier generated by Rails. Is there a way to replace the default :id params to another canonical identifier of my choice without resulting to writing custom routes for every standard action? Say if I want a route in the following format:</p> <pre><code>'/users/:login/articles/:id' </code></pre> <p>Is this kind of routes achievable using <strong>map.resources</strong>?</p> http://stackoverflow.com/questions/810385/how-to-rename-the-default-identifier-param-id-in-rails-map-resources/810891#810891 5 Answer by Paul Horsfall for How to rename the default identifier param "id" in Rails' map.resources()? Paul Horsfall 2009-05-01T10:18:35Z 2009-05-01T10:18:35Z <p>You can change the default of using the ID in URLs by overriding to_param in your model. e.g.</p> <pre><code>class User &lt; ActiveRecord::Base def to_param login end end user_articles_path(@user) =&gt; "/users/:login/articles" </code></pre> <p>The only other change you'll need to make is to find users by login rather than by ID in your controllers.</p> http://stackoverflow.com/questions/810385/how-to-rename-the-default-identifier-param-id-in-rails-map-resources/815957#815957 5 Answer by chrisk for How to rename the default identifier param "id" in Rails' map.resources()? chrisk 2009-05-03T00:05:30Z 2009-05-03T00:05:30Z <p>As of Rails 2.3, it's not possible to change the parameter name and still use the automatic routing that <code>#resources</code> provides.</p> <p>As a workaround, you can map <code>articles</code> with a <code>:path_prefix</code> and <code>:name_prefix</code>:</p> <pre><code>map.resources :articles, :path_prefix =&gt; "/users/:login", :name_prefix =&gt; "user_" </code></pre> <p>The <code>:path_prefix</code> affects the URL, and the <code>:name_prefix</code> affects the generated named routes, so you'll end up with these routes:</p> <pre><code> user_articles GET /users/:login/articles(.:format) {:controller=&gt;"articles", :action=&gt;"index"} POST /users/:login/articles(.:format) {:controller=&gt;"articles", :action=&gt;"create"} new_user_article GET /users/:login/articles/new(.:format) {:controller=&gt;"articles", :action=&gt;"new"} edit_user_article GET /users/:login/articles/:id/edit(.:format) {:controller=&gt;"articles", :action=&gt;"edit"} user_article GET /users/:login/articles/:id(.:format) {:controller=&gt;"articles", :action=&gt;"show"} PUT /users/:login/articles/:id(.:format) {:controller=&gt;"articles", :action=&gt;"update"} DELETE /users/:login/articles/:id(.:format) {:controller=&gt;"articles", :action=&gt;"destroy"} </code></pre> <p>As a general rule-of-thumb, though, I'd stick with the Rails default convention of <code>:user_id</code>, with the routing you posted in your question. It's generally understood that <code>:id</code> and <code>:user_id</code> don't necessarily imply "numeric identifier" — they imply "resource identifier," whatever that might be. And by sticking to the default convention, your code will be easier to understand for anyone who's used resource routes in Rails.</p> <p>To use a non-numeric identifier for a resource, just redefine <code>#to_param</code> in your model. Then, make sure to use a finder in your controller that will find by this identifier (rather than the numeric ID), such as <code>User#find_by_login!</code>.</p>