Add preference to disable e-mails about new pending accounts (#10529)
This commit is contained in:
parent
2cb16c20a6
commit
36b39fbac5
5 changed files with 9 additions and 2 deletions
|
@ -191,6 +191,10 @@ class User < ApplicationRecord
|
|||
settings.notification_emails['report']
|
||||
end
|
||||
|
||||
def allows_pending_account_emails?
|
||||
settings.notification_emails['pending_account']
|
||||
end
|
||||
|
||||
def hides_network?
|
||||
@hides_network ||= settings.hide_network
|
||||
end
|
||||
|
@ -295,7 +299,7 @@ class User < ApplicationRecord
|
|||
|
||||
def notify_staff_about_pending_account!
|
||||
User.staff.includes(:account).each do |u|
|
||||
next unless u.allows_report_emails?
|
||||
next unless u.allows_pending_account_emails?
|
||||
AdminMailer.new_pending_account(u.account, self).deliver_later
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue