mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 14:19:39 +02:00
11 lines
222 B
Ruby
11 lines
222 B
Ruby
|
class InviteCodesController < ApplicationController
|
||
|
def index
|
||
|
@invite_codes = InviteCode.all
|
||
|
end
|
||
|
|
||
|
def create
|
||
|
InviteCode.generate!
|
||
|
redirect_back_or_to invite_codes_path, notice: "Code generated"
|
||
|
end
|
||
|
end
|