Rails newbie... trying to understand the right way to do things...
In my app users can create a Book ( I have that working)
What I want to happen is when a user
I prefer something like (if User has_many Book):
def create @book = current_user.books.new(params[:book]) respond_to do |format| if @book.save …