I have a model stories in Rails 3.
I want to make an alias "books" for "stories" so I can have routes /books/192
instead of /stories/192
, and also that all my generated links (e.g. link_to) point to books' routes instead of stories' routes.
How can I do that?
Thanks