Initial commit

This commit is contained in:
Senad Uka
2020-05-31 22:38:19 +02:00
commit 858fafc3c5
1280 changed files with 65918 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
class ContractTemplates::QrCodesController < ApplicationController
before_action :set_contract_template
def show
send_file qr_code.to_png, download_attributes
end
private
def contract_templates
policy_scope(ContractTemplate)
end
def set_contract_template
@contract_template = contract_templates.find(params[:contract_template_id])
end
def qr_code
authorize QrCode.build_from_contract_template(@contract_template)
end
def download_attributes
{
filename: qr_code.filename,
type: "image/png",
}
end
end