Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
ecce94d3
Commit
ecce94d3
authored
May 16, 2016
by
Felipe Artur
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix default send confirmation value
parent
7bb84e64
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
CHANGELOG
CHANGELOG
+1
-2
app/models/application_setting.rb
app/models/application_setting.rb
+2
-1
db/migrate/20160516174813_add_send_user_confirmation_email_to_application_settings.rb
...d_send_user_confirmation_email_to_application_settings.rb
+1
-1
No files found.
CHANGELOG
View file @
ecce94d3
...
...
@@ -5,6 +5,7 @@ v 8.8.0 (unreleased)
- Fix error when using link to uploads in global snippets
- Assign labels and milestone to target project when moving issue. !3934 (Long Nguyen)
- Use a case-insensitive comparison in sanitizing URI schemes
- Toggle sign-up confirmation emails in application settings
- Project#open_branches has been cleaned up and no longer loads entire records into memory.
- Escape HTML in commit titles in system note messages
- Improve multiple branch push performance by memoizing permission checking
...
...
@@ -28,8 +29,6 @@ v 8.8.0 (unreleased)
- Display informative message when new milestone is created
- Sanitize milestones and labels titles
- Support multi-line tag messages. !3833 (Calin Seciu)
- Toggle sign-up confirmation emails in application settings
- Replace Devise Async with Devise ActiveJob integration. !3902 (Connor Shea)
- Allow "NEWS" and "CHANGES" as alternative names for CHANGELOG. !3768 (Connor Shea)
- Added button to toggle whitespaces changes on diff view
- Backport GitHub Enterprise import support from EE
...
...
app/models/application_setting.rb
View file @
ecce94d3
...
...
@@ -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
...
...
db/migrate/20160
421141709_add_send
_confirmation_email_to_application_settings.rb
→
db/migrate/20160
516174813_add_send_user
_confirmation_email_to_application_settings.rb
View file @
ecce94d3
class
AddSendConfirmationEmailToApplicationSettings
<
ActiveRecord
::
Migration
class
AddSend
User
ConfirmationEmailToApplicationSettings
<
ActiveRecord
::
Migration
def
up
add_column
:application_settings
,
:send_user_confirmation_email
,
:boolean
,
default:
false
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment