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>2022-03-10 03:08:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-03-10 03:08:36 +0300
commit237ead18b945830ed60ac1b4382a4431d66818a6 (patch)
tree60532f9b8ee5e7dfbbdd08fdedc211b1e7b8d784 /app/models/integration.rb
parent1bcebb67d554d95aa77d4cf42b22e7c96e1c8527 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/models/integration.rb')
-rw-r--r--app/models/integration.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/models/integration.rb b/app/models/integration.rb
index 3cf71f46420..0445894644e 100644
--- a/app/models/integration.rb
+++ b/app/models/integration.rb
@@ -216,10 +216,6 @@ class Integration < ApplicationRecord
self.supported_events.map { |event| IntegrationsHelper.integration_event_field_name(event) }
end
- def self.supported_event_actions
- %w[]
- end
-
def self.supported_events
%w[commit push tag_push issue confidential_issue merge_request wiki_page]
end
@@ -501,10 +497,6 @@ class Integration < ApplicationRecord
end
end
- def configurable_event_actions
- self.class.supported_event_actions
- end
-
def supported_events
self.class.supported_events
end