Skip to content
Snippets Groups Projects
Unverified Commit 4fd22acb authored by Claire's avatar Claire Committed by GitHub
Browse files

Fix auto-close email being sent to users with devops permissions instead of...

Fix auto-close email being sent to users with devops permissions instead of settings permissions (#29356)
parent 28b666b0
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ class Scheduler::AutoCloseRegistrationsScheduler
def switch_to_approval_mode!
Setting.registrations_mode = 'approved'
User.those_who_can(:view_devops).includes(:account).find_each do |user|
User.those_who_can(:manage_settings).includes(:account).find_each do |user|
AdminMailer.with(recipient: user.account).auto_close_registrations.deliver_later
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment