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:
authorDouwe Maan <douwe@gitlab.com>2015-03-17 15:55:39 +0300
committerDouwe Maan <douwe@gitlab.com>2015-03-18 16:07:28 +0300
commitbf235053adc60bb0b940ef6fb68a59485bc815aa (patch)
tree217874c9652d91a71983f5e31a032ffc815bc62b /app/models/project_services
parentdbd347bfa00e133da8ac178612ed8c30ef871ca4 (diff)
Send EmailsOnPush email when branch or tag is created or deleted.
Diffstat (limited to 'app/models/project_services')
-rw-r--r--app/models/project_services/emails_on_push_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project_services/emails_on_push_service.rb b/app/models/project_services/emails_on_push_service.rb
index acb5e7f1af5..3e465ab1a38 100644
--- a/app/models/project_services/emails_on_push_service.rb
+++ b/app/models/project_services/emails_on_push_service.rb
@@ -36,7 +36,7 @@ class EmailsOnPushService < Service
end
def supported_events
- %w(push)
+ %w(push tag_push)
end
def execute(push_data)