diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-02-23 19:30:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-23 19:30:13 +0100 |
commit | 1c3e5e44e2cb7eaeb3a930ec1821096827df930e (patch) | |
tree | b3b286a0f66f4932b179c40b31ac955a76602fc8 | |
parent | 0db101ede2eb9f8869932135785b0d83cd05560e (diff) |
Fix new sign-up notification not working because of incorrect type name (#17629)
-rw-r--r-- | app/services/bootstrap_timeline_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/bootstrap_timeline_service.rb b/app/services/bootstrap_timeline_service.rb index 70e7cc570..312c163e4 100644 --- a/app/services/bootstrap_timeline_service.rb +++ b/app/services/bootstrap_timeline_service.rb @@ -18,7 +18,7 @@ class BootstrapTimelineService < BaseService def notify_staff! 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 |