Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class ClientsController < ApplicationController
  2.   def download_pdf
  3.     client = Client.find(params[:id])
  4.     send_file("#{Rails.root}/files/clients/#{client.id}.pdf",
  5.               filename: "#{client.name}.pdf",
  6.               type: "application/pdf")
  7.   end
  8. end