Browse Source

Fix new sign-up notification not working because of incorrect type name (#17629)

closed-social-glitch-2
Claire 2 years ago
committed by GitHub
parent
commit
1c3e5e44e2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/bootstrap_timeline_service.rb

+ 1
- 1
app/services/bootstrap_timeline_service.rb View File

@ -18,7 +18,7 @@ class BootstrapTimelineService < BaseService
def notify_staff! def notify_staff!
User.staff.includes(:account).find_each do |user| User.staff.includes(:account).find_each do |user|
NotifyService.new.call(user.account, :'admin.new_user', @source_account)
NotifyService.new.call(user.account, :'admin.sign_up', @source_account)
end end
end end
end end

Loading…
Cancel
Save