From 6d352790c45cdb40265e7012eb991e3f69655924 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Tue, 17 Jun 2014 22:54:21 +0300 Subject: [PATCH] Fix user notifications --- app/models/user.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/user.rb b/app/models/user.rb index 5e371e2c60b..8c2045444f0 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -506,7 +506,7 @@ class User < ActiveRecord::Base def post_create_hook log_info("User \"#{self.name}\" (#{self.email}) was created") - notification.new_user(self) + notification_service.new_user(self) system_hook_service.execute_hooks_for(self, :create) end @@ -515,7 +515,7 @@ class User < ActiveRecord::Base system_hook_service.execute_hooks_for(self, :destroy) end - def notification + def notification_service NotificationService.new end -- GitLab