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:
Diffstat (limited to 'app/services/notification_service.rb')
-rw-r--r--app/services/notification_service.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/services/notification_service.rb b/app/services/notification_service.rb
index 1224cf80b76..660d9891e46 100644
--- a/app/services/notification_service.rb
+++ b/app/services/notification_service.rb
@@ -16,6 +16,16 @@
# NotificationService.new.async.new_issue(issue, current_user)
#
class NotificationService
+ # These should not be called by the MailScheduler::NotificationServiceWorker -
+ # what would it even mean?
+ EXCLUDED_ACTIONS = %i[async].freeze
+
+ def self.permitted_actions
+ @permitted_actions ||= gitlab_extensions.flat_map do |klass|
+ klass.public_instance_methods(false) - EXCLUDED_ACTIONS
+ end.to_set
+ end
+
class Async
attr_reader :parent