Commit f230fe3ddab86130af57671b325ff83984d62117
1 parent
0a044c73
Exists in
master
and in
4 other branches
Fix NotificationService NameError for new issue
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/services/notification_service.rb
... | ... | @@ -40,7 +40,7 @@ class NotificationService |
40 | 40 | # * issue new assignee if his notification level is not Disabled |
41 | 41 | # |
42 | 42 | def reassigned_issue(issue, current_user) |
43 | - reassign_email(merge_request, current_user, 'reassigned_issue_email') | |
43 | + reassign_email(issue, current_user, 'reassigned_issue_email') | |
44 | 44 | end |
45 | 45 | |
46 | 46 | # When create an issue we should send next emails: | ... | ... |