1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00
Maybe/app/controllers/invite_codes_controller.rb
2024-10-08 12:36:06 -05:00

18 lines
354 B
Ruby

class InviteCodesController < ApplicationController
before_action :ensure_self_hosted
def index
@invite_codes = InviteCode.all
end
def create
InviteCode.generate!
redirect_back_or_to invite_codes_path, notice: "Code generated"
end
private
def ensure_self_hosted
redirect_to root_path unless self_hosted?
end
end