1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-21 06:09:38 +02:00
Maybe/app/controllers/concerns/self_hostable.rb

13 lines
197 B
Ruby
Raw Normal View History

module SelfHostable
extend ActiveSupport::Concern
included do
helper_method :self_hosted?
end
private
def self_hosted?
Rails.configuration.app_mode.self_hosted?
end
end