about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-02-23 19:30:13 +0100
committerGitHub <noreply@github.com>2022-02-23 19:30:13 +0100
commit1c3e5e44e2cb7eaeb3a930ec1821096827df930e (patch)
treeb3b286a0f66f4932b179c40b31ac955a76602fc8 /app
parent0db101ede2eb9f8869932135785b0d83cd05560e (diff)
Fix new sign-up notification not working because of incorrect type name (#17629)
Diffstat (limited to 'app')
-rw-r--r--app/services/bootstrap_timeline_service.rb2
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