diff options
author | Felipe Artur <felipefac@gmail.com> | 2016-05-16 12:42:34 -0300 |
---|---|---|
committer | Felipe Artur <felipefac@gmail.com> | 2016-05-16 16:53:11 -0300 |
commit | ecce94d3aab57e099a8897a860023b8ec7acac05 (patch) | |
tree | 63db513f4516c1e1bb68eb06f88b0c64d6020f5d /app/models | |
parent | 7bb84e64979edda8e76f077bd58aeb35857aec23 (diff) | |
download | gitlab-ce-ecce94d3aab57e099a8897a860023b8ec7acac05.tar.gz |
fix default send confirmation value
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/application_setting.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/application_setting.rb b/app/models/application_setting.rb index 1a10768655f..f5079f92444 100644 --- a/app/models/application_setting.rb +++ b/app/models/application_setting.rb @@ -120,7 +120,8 @@ class ApplicationSetting < ActiveRecord::Base recaptcha_enabled: false, akismet_enabled: false, repository_checks_enabled: true, - disabled_oauth_sign_in_sources: [] + disabled_oauth_sign_in_sources: [], + send_user_confirmation_email: false ) end |