Hello.
I have two models: Books and Authors. Books has_many Authors Authors belongs_to Books
Problem is right now this loads in my app: /books /authors
I don't want users to be able to look at /authors
The behavior I want is users to first select a Book and get all kinds of great book detail... Then the user can click "Show me all the book's authors" to go to something like: /books/10/authors/
And since authors can't exist outside of a book, to view a author: /books/10/authors/1
And in this case, authors can't belong to multiple books, just one book (trust me!)
Solutions, Ideas? thank you