Browse Source

Enable validations

CLDC-2460-review-app
Kat 2 years ago
parent
commit
ac90f999dc
  1. 4
      app/services/feature_toggle.rb

4
app/services/feature_toggle.rb

@ -1,6 +1,8 @@
class FeatureToggle class FeatureToggle
# Disable check on preview apps to allow for testing of future forms # Disable check on preview apps to allow for testing of future forms
def self.saledate_collection_window_validation_enabled? def self.saledate_collection_window_validation_enabled?
return true
Rails.env.production? || Rails.env.test? || Rails.env.staging? Rails.env.production? || Rails.env.test? || Rails.env.staging?
end end
@ -21,7 +23,7 @@ class FeatureToggle
end end
def self.force_crossover? def self.force_crossover?
return false if Rails.env.test? return false
!Rails.env.production? !Rails.env.production?
end end

Loading…
Cancel
Save