search for: blog_attachment_params

Displaying 1 result from an estimated 1 matches for "blog_attachment_params".

2014 Mar 26
0
Heroku | Rails 4 | Ruby 2.0 - send_file not presenting file for download in the browser
...ocument.url).parsed_response end end # Use callbacks to share common setup or constraints between actions. def set_blog_attachment @blog_attachment = BlogAttachment.find(params[:id]) end # Never trust parameters from the scary internet, only allow the white list through. def blog_attachment_params params[:blog_attachment] end app/views/blogs/show.html.erb <% for attachment in @blog.blog_attachments %> <%= link_to attachment.document_file_name, download_blog_attachments_path(id: attachment.id), remote: true, method: :get %> <% end %> Any help is greatly appreciate...