Files
fizzy/app/controllers/accounts/join_codes_controller.rb
T
2024-10-19 19:31:48 -07:00

11 lines
296 B
Ruby

class Accounts::JoinCodesController < ApplicationController
def show
render svg: RQRCode::QRCode.new(join_url(Current.account.join_code)).as_svg(viewbox: true, fill: :white, color: :black)
end
def update
Current.account.reset_join_code
redirect_to account_users_path
end
end