1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00
Files
til/rails/customize-the-path-of-a-resource-route.md

624 B

Customize The Path Of A Resource Route

The :path option allows you to customize the path used by a resource route in Rails' config/routes.rb file. This is handy if you have a multi-word resource that you would like to use dashes in the path.

For instance

resources :audio_books

would have paths like /audio_books and /audio_books/:id.

By specifying the :path option

resources :audio_books, path: 'audio-books'

the paths end up like /audio-books and /audio-books/id.

source