ref: master
plugins/web_odf/controllers/myprofile/web_odf_plugin/edition_controller.rb
1 2 3 4 5 6 7 8 9 10 |
class WebODFPlugin::EditionController < MyProfileController def file @document = profile.web_odf_documents.where(id: params[:id]).first return render text: File.read(WebODFPlugin::EmptyDocument) if @document.blank? or @document.body.blank? send_data @document.odf, filename: @document.filename end end |