Files
openfoodnetwork/config/initializers/flipper.rb
Maikel Linke f1a5c46685 Remove unnecessary Flipper memoizer config
Auto-config, yay.
2023-03-15 12:54:03 +11:00

12 lines
486 B
Ruby

require "flipper"
require "flipper/adapters/active_record"
if Rails.env.production?
Flipper::UI.configure do |config|
config.banner_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-toggle-with-Flipper'
config.banner_class = 'danger'
end
end
Flipper.register(:admins) { |actor| actor.respond_to?(:admin?) && actor.admin? }