Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-02 21:09:47 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-02 21:09:47 +0300
commit0a9b6b99a9bdcacea434501320f1a8d131a33827 (patch)
treeb3fb338cec894837358b82635c90a52f5b8e0c3d /app/services/notification_service.rb
parentd944f09d3212ca8aad09b92dbbae7323ee634237 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services/notification_service.rb')
-rw-r--r--app/services/notification_service.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/services/notification_service.rb b/app/services/notification_service.rb
index 1be240356c6..47bc36fce70 100644
--- a/app/services/notification_service.rb
+++ b/app/services/notification_service.rb
@@ -939,12 +939,12 @@ class NotificationService
NotificationRecipients::BuildService.build_project_maintainers_recipients(target, action: action)
end
- def notifiable?(*args)
- NotificationRecipients::BuildService.notifiable?(*args)
+ def notifiable?(...)
+ NotificationRecipients::BuildService.notifiable?(...)
end
- def notifiable_users(*args)
- NotificationRecipients::BuildService.notifiable_users(*args)
+ def notifiable_users(...)
+ NotificationRecipients::BuildService.notifiable_users(...)
end
def deliver_access_request_email(recipient, member)