From 4a2979f71e1fe2fd1a3fec260751a8a9a9747a98 Mon Sep 17 00:00:00 2001 From: Paul Chavard Date: Tue, 24 Apr 2018 15:02:42 +0200 Subject: [PATCH] Enable weekly_overview only in production --- config/features.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/features.rb b/config/features.rb index 4e3c34a98..c582f0be4 100644 --- a/config/features.rb +++ b/config/features.rb @@ -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