mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-02-21 20:20:34 +09:00
12 lines
331 B
Ruby
12 lines
331 B
Ruby
class QrCodeController < ApplicationController
|
|
allow_unauthenticated_access
|
|
|
|
def show
|
|
url = Base64.urlsafe_decode64(params[:id])
|
|
qr_code = RQRCode::QRCode.new(url).as_svg(viewbox: true, fill: :white, color: :black)
|
|
|
|
expires_in 1.year, public: true
|
|
render plain: qr_code, content_type: "image/svg+xml"
|
|
end
|
|
end
|