Guest User

Untitled

a guest
Jun 20th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. def index
  2. @title = "All Books - Vendera Publishing"
  3. @books = Array.new
  4. authors = Company.find_by_path(params[:company_path]).authors
  5. authors.each do |author|
  6. @books = @books + [Book.find_by_author_id(author.id)]
  7. end
  8. end
Add Comment
Please, Sign In to add comment