You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
957 B
40 lines
957 B
class FeatureToggle |
|
# Disable check on preview apps to allow for testing of future forms |
|
def self.saledate_collection_window_validation_enabled? |
|
Rails.env.production? || Rails.env.test? || Rails.env.staging? |
|
end |
|
|
|
def self.startdate_two_week_validation_enabled? |
|
Rails.env.production? || Rails.env.test? || Rails.env.staging? |
|
end |
|
|
|
def self.saledate_two_week_validation_enabled? |
|
Rails.env.production? || Rails.env.test? || Rails.env.staging? || Rails.env.review? |
|
end |
|
|
|
def self.bulk_upload_duplicate_log_check_enabled? |
|
!Rails.env.staging? |
|
end |
|
|
|
def self.upload_enabled? |
|
!Rails.env.development? |
|
end |
|
|
|
def self.force_crossover? |
|
return false if Rails.env.test? |
|
|
|
!Rails.env.production? |
|
end |
|
|
|
def self.merge_organisations_enabled? |
|
!Rails.env.production? |
|
end |
|
|
|
def self.deduplication_flow_enabled? |
|
!Rails.env.production? |
|
end |
|
|
|
def self.duplicate_summary_enabled? |
|
!Rails.env.production? |
|
end |
|
end
|
|
|