demarches-normaliennes/config/features.rb

40 lines
992 B
Ruby
Raw Normal View History

2018-04-18 12:16:25 +02:00
Flipflop.configure do
strategy :cookie,
secure: Rails.env.production?,
httponly: true
2018-04-18 12:16:25 +02:00
strategy :active_record
strategy :user_preference
strategy :default
group :champs do
feature :champ_siret,
title: "Champ SIRET"
2018-10-31 19:51:11 +01:00
feature :champ_integer_number,
title: "Champ nombre entier"
feature :champ_repetition,
title: "Bloc répétable (NE MARCHE PAS NE PAS ACTIVER)"
2018-04-18 12:16:25 +02:00
end
2018-04-18 12:16:25 +02:00
feature :web_hook
2018-08-13 17:52:56 +02:00
feature :publish_draft
2018-08-29 14:57:34 +02:00
feature :support_form
feature :enable_email_login_token
2018-04-18 12:16:25 +02:00
group :production do
feature :remote_storage,
2018-08-22 17:36:15 +02:00
default: ENV['FOG_ENABLED'] == 'enabled'
2018-04-18 12:16:25 +02:00
feature :weekly_overview,
default: ENV['APP_NAME'] == 'tps'
feature :pre_maintenance_mode
feature :maintenance_mode
2018-04-18 12:16:25 +02:00
end
2018-12-10 19:47:52 +01:00
if Rails.env.test?
# It would be nicer to configure this in administrateur_spec.rb in #feature_enabled?,
# but that results in a FrozenError: can't modify frozen Hash
feature :test_a
feature :test_b
end
2018-04-18 12:16:25 +02:00
end