From 27553e9058254be78a840e94e623fab977bd1b64 Mon Sep 17 00:00:00 2001 From: Julian Herrero Date: Mon, 11 Mar 2019 15:07:54 +0100 Subject: [PATCH] Move setting next to similar/related settings --- db/dev_seeds/settings.rb | 2 +- db/seeds.rb | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/db/dev_seeds/settings.rb b/db/dev_seeds/settings.rb index b3254ea1a..6cecac651 100644 --- a/db/dev_seeds/settings.rb +++ b/db/dev_seeds/settings.rb @@ -41,12 +41,12 @@ section "Creating Settings" do Setting.create(key: "feature.user.recommendations", value: "true") Setting.create(key: "feature.user.recommendations_on_debates", value: "true") Setting.create(key: "feature.user.recommendations_on_proposals", value: "true") + Setting.create(key: "feature.user.skip_verification", value: "true") Setting.create(key: "feature.community", value: "true") Setting.create(key: "feature.map", value: "true") Setting.create(key: "feature.allow_images", value: "true") Setting.create(key: "feature.allow_attached_documents", value: "true") Setting.create(key: "feature.public_stats", value: "true") - Setting.create(key: "feature.user.skip_verification", value: "true") Setting.create(key: "feature.help_page", value: "true") Setting.create(key: "per_page_code_head", value: "") diff --git a/db/seeds.rb b/db/seeds.rb index 6a9957c1c..acd473e00 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -81,6 +81,7 @@ Setting["feature.legislation"] = true Setting["feature.user.recommendations"] = true Setting["feature.user.recommendations_on_debates"] = true Setting["feature.user.recommendations_on_proposals"] = true +Setting["feature.user.skip_verification"] = "true" Setting["feature.community"] = true Setting["feature.map"] = nil Setting["feature.allow_images"] = true @@ -112,8 +113,6 @@ Setting["map_zoom"] = 10 # Related content Setting["related_content_score_threshold"] = -0.3 -Setting["feature.user.skip_verification"] = "true" - Setting["feature.homepage.widgets.feeds.proposals"] = true Setting["feature.homepage.widgets.feeds.debates"] = true Setting["feature.homepage.widgets.feeds.processes"] = true