mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
13 lines
207 B
Ruby
13 lines
207 B
Ruby
|
module Invitable
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
helper_method :invite_code_required?
|
||
|
end
|
||
|
|
||
|
private
|
||
|
def invite_code_required?
|
||
|
ENV["REQUIRE_INVITE_CODE"] == "true"
|
||
|
end
|
||
|
end
|