mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-02 03:55:20 +02:00
Ensure self hosted for invite code listing
This commit is contained in:
parent
59e4eff24a
commit
3461182725
1 changed files with 8 additions and 0 deletions
|
@ -1,4 +1,6 @@
|
||||||
class InviteCodesController < ApplicationController
|
class InviteCodesController < ApplicationController
|
||||||
|
before_action :ensure_self_hosted
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@invite_codes = InviteCode.all
|
@invite_codes = InviteCode.all
|
||||||
end
|
end
|
||||||
|
@ -7,4 +9,10 @@ class InviteCodesController < ApplicationController
|
||||||
InviteCode.generate!
|
InviteCode.generate!
|
||||||
redirect_back_or_to invite_codes_path, notice: "Code generated"
|
redirect_back_or_to invite_codes_path, notice: "Code generated"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def ensure_self_hosted
|
||||||
|
redirect_to root_path unless self_hosted?
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue