diff options
author | Richard Schneeman <richard.schneeman@gmail.com> | 2015-08-01 09:42:31 -0500 |
---|---|---|
committer | Richard Schneeman <richard.schneeman@gmail.com> | 2015-08-01 09:42:31 -0500 |
commit | c7a9f572d16b742b0138fb658bae30f08509b584 (patch) | |
tree | 58843200913e84793e9d176912726a6c50188127 /actionpack | |
parent | 21b870c906ee23ea3f8055e66aa16476f5369055 (diff) | |
parent | 2ea95a522a058183c27552d78722ed52716b3b13 (diff) | |
download | rails-c7a9f572d16b742b0138fb658bae30f08509b584.tar.gz rails-c7a9f572d16b742b0138fb658bae30f08509b584.tar.bz2 rails-c7a9f572d16b742b0138fb658bae30f08509b584.zip |
Merge pull request #21088 from yui-knk/doc/to_param
[ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index ec530c6e8a..64352d5742 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -443,6 +443,21 @@ module ActionDispatch # dynamic segment used to generate the routes). # You can access that segment from your controller using # <tt>params[<:param>]</tt>. + # In your router: + # + # resources :user, param: :name + # + # You can override <tt>ActiveRecord::Base#to_param</tt> of a related + # model to constructe an URL. + # + # class User < ActiveRecord::Base + # def to_param # overridden + # name + # end + # end + # + # user = User.find_by(name: 'Phusion') + # user_path(user) # => "/users/Phusion" # # [:path] # The path prefix for the routes. |