Hello world

First open source release of Campfire 🎉
This commit is contained in:
Kevin McConnell
2025-08-15 11:02:42 +01:00
commit df76a227dc
664 changed files with 36235 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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