Enable weekly_overview only in production

This commit is contained in:
Paul Chavard 2018-04-24 15:02:42 +02:00
parent 4aec1d7bfc
commit 4a2979f71e

View file

@ -13,6 +13,6 @@ Flipflop.configure do
feature :remote_storage,
default: Rails.env.production? || Rails.env.staging?
feature :weekly_overview,
default: Rails.env.production? || Rails.env.staging?
default: Rails.env.production?
end
end