From 4d5b885b7e1c44ff2f6e0237b87a638358cf9158 Mon Sep 17 00:00:00 2001 From: rgarcia Date: Tue, 10 Jan 2017 20:13:48 +0100 Subject: [PATCH] sets spending proposal's settings to nil --- db/dev_seeds.rb | 4 ++-- db/seeds.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/db/dev_seeds.rb b/db/dev_seeds.rb index b2e48a55f..73c20f0d2 100644 --- a/db/dev_seeds.rb +++ b/db/dev_seeds.rb @@ -25,8 +25,8 @@ Setting.create(key: 'url', value: 'http://localhost:3000') Setting.create(key: 'org_name', value: 'Consul') Setting.create(key: 'place_name', value: 'City') Setting.create(key: 'feature.debates', value: "true") -Setting.create(key: 'feature.spending_proposals', value: "true") -Setting.create(key: 'feature.spending_proposal_features.voting_allowed', value: "true") +Setting.create(key: 'feature.spending_proposals', value: nil) +Setting.create(key: 'feature.spending_proposal_features.voting_allowed', value: nil) Setting.create(key: 'feature.budgets', value: "true") Setting.create(key: 'feature.twitter_login', value: "true") Setting.create(key: 'feature.facebook_login', value: "true") diff --git a/db/seeds.rb b/db/seeds.rb index de8e7c69b..41261d9d7 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -63,7 +63,7 @@ Setting["meta_keywords"] = nil # Feature flags Setting['feature.debates'] = true -Setting['feature.spending_proposals'] = true +Setting['feature.spending_proposals'] = nil Setting['feature.twitter_login'] = true Setting['feature.facebook_login'] = true Setting['feature.google_login'] = true @@ -72,7 +72,7 @@ Setting['feature.budgets'] = true Setting['feature.signature_sheets'] = true # Spending proposals feature flags -Setting['feature.spending_proposal_features.voting_allowed'] = true +Setting['feature.spending_proposal_features.voting_allowed'] = nil # Banner styles Setting['banner-style.banner-style-one'] = "Banner style 1"