diff options
author | Tom Bell <tomb@tomb.io> | 2016-08-03 20:30:49 +0100 |
---|---|---|
committer | Tom Bell <tomb@tomb.io> | 2016-08-05 19:27:36 +0100 |
commit | 8720a6e4ef47675f5778b140b6b56615f808aff4 (patch) | |
tree | e7561eb7cc962a5004a4c8d864da4836d8183f03 | |
parent | 8765d2f9ca94533c69edc90e41fc25fa5e98e018 (diff) | |
download | gitlab-ce-8720a6e4ef47675f5778b140b6b56615f808aff4.tar.gz |
Update to send changed password notification emails
Add the devise initializer config setting to enable the sending of notification
emails when a user changes their password.
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | config/initializers/devise.rb | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG index b6532cafbcd..d343a4f234a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -73,6 +73,7 @@ v 8.11.0 (unreleased) - Add description to new_issue email and new_merge_request_email in text/plain content type. !5663 (dixpac) - Speed up and reduce memory usage of Commit#repo_changes, Repository#expire_avatar_cache and IrkerWorker - Add unfold links for Side-by-Side view. !5415 (Tim Masliuchenko) + - Update devise initializer to turn on changed password notification emails. !5648 (tombell) v 8.10.5 (unreleased) diff --git a/config/initializers/devise.rb b/config/initializers/devise.rb index 73977341b73..a0a8f88584c 100644 --- a/config/initializers/devise.rb +++ b/config/initializers/devise.rb @@ -100,6 +100,9 @@ Devise.setup do |config| # secure: true in order to force SSL only cookies. # config.cookie_options = {} + # Send a notification email when the user's password is changed + config.send_password_change_notification = true + # ==> Configuration for :validatable # Range for password length. Default is 6..128. config.password_length = 8..128 |