curved-father-82134
08/02/2023, 10:13 AMcurved-father-82134
08/02/2023, 10:39 AMdef your_action
@users = User.all
respond_to do |format|
format.html
format.pdf do
render pdf: "PDF file title",
page_size: 'A4',
formats: [:html],
template: 'your_template_file_path',
layout: false,
zoom: 1,
dpi: 400,
disposition: 'attachment'
end
end
end
That's all you need to do.future-author-97799
08/02/2023, 11:13 AM