From 522cb1900394b2f130d5534bad4ea1cf6d4f1e1b Mon Sep 17 00:00:00 2001 From: baarkerlounger Date: Fri, 21 Jan 2022 17:04:45 +0000 Subject: [PATCH] Leave the unused ones in so it's easy to change them if used in future --- app/mailers/notify_devise_mailer.rb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/app/mailers/notify_devise_mailer.rb b/app/mailers/notify_devise_mailer.rb index 45dc58957..2afd340e1 100644 --- a/app/mailers/notify_devise_mailer.rb +++ b/app/mailers/notify_devise_mailer.rb @@ -38,7 +38,15 @@ class NotifyDeviseMailer < Devise::Mailer send_email(record.email, template_id, personalisation) end + def unlock_instructions(record, token, opts = {}) + super + end + def email_changed(record, opts = {}) - # devise_mail(record, :email_changed, opts) + super + end + + def password_change(record, opts = {}) + super end end