diff options
author | Jamie Bliss <astronouth7303@gmail.com> | 2017-06-05 18:15:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-05 18:15:55 -0400 |
commit | 1a58f7e522bb4784e2127582b2d46d6991a8f2a9 (patch) | |
tree | 2df34380922df437ae5a1b89c83cf36200688ebc | |
parent | 2b1e0f0041ae04134d38a5db47cc301aa757d7ea (diff) | |
download | gitlab-1a58f7e522bb4784e2127582b2d46d6991a8f2a9.tar.gz |
Add new event types to ProjectHook
These are being returned in the live API, but can't set them.
-rw-r--r-- | gitlab/v4/objects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 6283149..d1d589e 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -841,7 +841,7 @@ class ProjectHook(GitlabObject): optionalCreateAttrs = ['push_events', 'issues_events', 'note_events', 'merge_requests_events', 'tag_push_events', 'build_events', 'enable_ssl_verification', 'token', - 'pipeline_events'] + 'pipeline_events', 'job_events', 'wiki_page_events'] shortPrintAttr = 'url' |