Merge pull request #1864 from tchak/fix-weekly_overview

Enable weekly_overview only in production
This commit is contained in:
Paul Chavard 2018-04-24 16:29:04 +02:00 committed by GitHub
commit 2fee9cb99e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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