mirror of
https://github.com/internetee/registry.git
synced 2025-07-28 05:26:17 +02:00
7 lines
173 B
Ruby
7 lines
173 B
Ruby
class Feature
|
|
def self.billing_system_integrated?
|
|
return false if ENV['billing_system_integrated'] == 'false'
|
|
|
|
ENV['billing_system_integrated'] || false
|
|
end
|
|
end
|