Guest User

Untitled

a guest
Mar 17th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. def index
  2. @products = Product.find(:all)
  3. respond_to do |format|
  4. format.html
  5. format.pdf do
  6. send_data ProductDrawer.draw(@products), :filename => 'products.pdf', :type => 'application/pdf', :disposition => 'inline'
  7. end
  8. end
  9. end
Add Comment
Please, Sign In to add comment