From d0c7eacf2a13a346699fc6ec3f548d6a708fd252 Mon Sep 17 00:00:00 2001 From: Victor Costa Date: Fri, 25 Jul 2014 11:48:23 -0300 Subject: [PATCH] serpro_integration: set default to false --- lib/ext/community.rb | 6 +++--- lib/ext/profile.rb | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/ext/community.rb b/lib/ext/community.rb index 5c46b11..d073cbd 100644 --- a/lib/ext/community.rb +++ b/lib/ext/community.rb @@ -2,9 +2,9 @@ require_dependency 'community' class Community - settings_items :allow_sonar_integration, :type => :boolean, :default => true - settings_items :allow_gitlab_integration, :type => :boolean, :default => true - settings_items :allow_jenkins_integration, :type => :boolean, :default => true + settings_items :allow_sonar_integration, :type => :boolean, :default => false + settings_items :allow_gitlab_integration, :type => :boolean, :default => false + settings_items :allow_jenkins_integration, :type => :boolean, :default => false settings_items :serpro_integration_plugin_gitlab, :type => Hash, :default => {} settings_items :serpro_integration_plugin_jenkins, :type => Hash, :default => {} diff --git a/lib/ext/profile.rb b/lib/ext/profile.rb index d6f029c..9eb48aa 100644 --- a/lib/ext/profile.rb +++ b/lib/ext/profile.rb @@ -1,8 +1,8 @@ require_dependency 'profile' class Profile - settings_items :allow_sonar_integration, :type => :boolean, :default => true - settings_items :allow_gitlab_integration, :type => :boolean, :default => true + settings_items :allow_sonar_integration, :type => :boolean, :default => false + settings_items :allow_gitlab_integration, :type => :boolean, :default => false #FIXME make test for default option settings_items :serpro_integration_plugin, :type => Hash, :default => {} -- libgit2 0.21.2