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