summaryrefslogtreecommitdiff
path: root/gitlab/objects.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2017-01-29 08:05:13 +0100
committerGitHub <noreply@github.com>2017-01-29 08:05:13 +0100
commitdad134556dd624243c85b5f61a40cc893357492d (patch)
tree52cc344747353c5758570c0a7fea604d584983f9 /gitlab/objects.py
parent1d827bd50041eab2ce3871c9070a698f6762d019 (diff)
parent5cfa6fccf1a0c5c03871e1b3a4f910e25abfd854 (diff)
downloadgitlab-dad134556dd624243c85b5f61a40cc893357492d.tar.gz
Merge pull request #210 from comel/services-1
Add builds-email and pipelines-email services
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r--gitlab/objects.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py
index 8c35911..846da20 100644
--- a/gitlab/objects.py
+++ b/gitlab/objects.py
@@ -2042,6 +2042,10 @@ class ProjectService(GitlabObject):
'drone-ci': (('token', 'drone_url'), ('enable_ssl_verification', )),
'emails-on-push': (('recipients', ), ('disable_diffs',
'send_from_committer_email')),
+ 'builds-email': (('recipients', ), ('add_pusher',
+ 'notify_only_broken_builds')),
+ 'pipelines-email': (('recipients', ), ('add_pusher',
+ 'notify_only_broken_builds')),
'external-wiki': (('external_wiki_url', ), tuple()),
'flowdock': (('token', ), tuple()),
'gemnasium': (('api_key', 'token', ), tuple()),