mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-03-13 21:55:15 +09:00
9 lines
255 B
Ruby
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
|