mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
variant_tag feature check should happen per enterprise basis, but we still want super admin to so see variant tag. To do so we check if the user is amdin or if any of the current user enterprise has variant tag enable.
63 lines
2.3 KiB
Ruby
63 lines
2.3 KiB
Ruby
require "flipper"
|
||
require "flipper/adapters/active_record"
|
||
require "open_food_network/feature_toggle"
|
||
|
||
Rails.application.configure do
|
||
# Disable Flipper's built-in test helper.
|
||
# It fails in CI and feature don't get activated.
|
||
config.flipper.test_help = false
|
||
end
|
||
|
||
Flipper.configure do |flipper|
|
||
# Still use recommended test setup with faster memory adapter:
|
||
if Rails.env.test?
|
||
# Use a shared Memory adapter for all tests. The adapter is instantiated
|
||
# outside of the block so the same instance is returned in new threads.
|
||
adapter = Flipper::Adapters::Memory.new
|
||
flipper.adapter { adapter }
|
||
end
|
||
end
|
||
|
||
# Groups
|
||
Flipper.register(:admins) do |actor|
|
||
actor.respond_to?(:admin?) && actor.admin?
|
||
end
|
||
Flipper.register(:new_2024_07_03) do |actor|
|
||
actor.respond_to?(:created_at?) && actor.created_at >= "2024-07-03".to_time
|
||
end
|
||
Flipper.register(:enterprise_created_before_2025_08_11) do |actor|
|
||
# This group applies to enterprises only, so we return false if the actor is not an Enterprise
|
||
next false unless actor.actor.instance_of? Enterprise
|
||
|
||
actor.respond_to?(:created_at?) && actor.created_at < "2025-08-11".to_time
|
||
end
|
||
Flipper.register(:enterprise_created_after_2025_08_11) do |actor|
|
||
# This group applies to enterprises only, so we return false if the actor is not an Enterprise
|
||
next false unless actor.actor.instance_of? Enterprise
|
||
|
||
actor.respond_to?(:created_at?) && actor.created_at >= "2025-08-11".to_time
|
||
end
|
||
|
||
Flipper::UI.configure do |config|
|
||
config.descriptions_source = ->(_keys) do
|
||
# return has to be hash of {String key => String description}
|
||
OpenFoodNetwork::FeatureToggle::CURRENT_FEATURES
|
||
end
|
||
|
||
# Defaults to false. Set to true to show feature descriptions on the list
|
||
# page as well as the view page.
|
||
# config.show_feature_description_in_list = true
|
||
|
||
if Rails.env.production?
|
||
config.banner_text = <<~TEXT
|
||
⚠️ Production environment: be aware that the changes have an impact on the
|
||
application. Please read the how-to before:
|
||
https://github.com/openfoodfoundation/openfoodnetwork/wiki/Feature-toggles
|
||
TEXT
|
||
config.banner_class = 'danger'
|
||
end
|
||
end
|
||
|
||
# Add known feature toggles. This may fail if the database isn't setup yet.
|
||
OpenFoodNetwork::FeatureToggle.setup! rescue ActiveRecord::StatementInvalid
|