Files
once-campfire/app/helpers/qr_code_helper.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

9 lines
255 B
Ruby

module QrCodeHelper
def link_to_zoom_qr_code(url, &)
id = Base64.urlsafe_encode64(url)
link_to qr_code_path(id), class: "btn", data: {
lightbox_target: "image", action: "lightbox#open", lightbox_url_value: qr_code_path(id) }, &
end
end