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.
50 lines
1.1 KiB
50 lines
1.1 KiB
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.startdate_collection_window_validation_enabled? |
|
Rails.env.production? || Rails.env.test? || Rails.env.staging? |
|
end |
|
|
|
def self.sales_log_enabled? |
|
!Rails.env.production? |
|
end |
|
|
|
def self.managing_owning_enabled? |
|
!Rails.env.production? |
|
end |
|
|
|
def self.scheme_toggle_enabled? |
|
true |
|
end |
|
|
|
def self.location_toggle_enabled? |
|
true |
|
end |
|
|
|
def self.managing_for_other_user_enabled? |
|
!Rails.env.production? |
|
end |
|
|
|
def self.bulk_upload_logs? |
|
!Rails.env.production? |
|
end |
|
|
|
def self.upload_enabled? |
|
!Rails.env.development? |
|
end |
|
|
|
def self.validate_valid_radio_options? |
|
!(Rails.env.production? || Rails.env.staging?) |
|
end |
|
|
|
def self.collection_2023_2024_year_enabled? |
|
!Rails.env.production? |
|
end |
|
end
|
|
|