diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-04-16 10:07:45 +0200 |
---|---|---|
committer | Max Wittig <max.wittig@siemens.com> | 2020-04-16 14:39:04 +0200 |
commit | fc5222188ad096932fa89bb53f03f7118926898a (patch) | |
tree | 728d753db13054fe866e1c3587255dc3f2c893c8 /gitlab/v4/objects.py | |
parent | 70cefe4d5b7f29db6c8c1deef524076510fd350a (diff) | |
download | gitlab-fc5222188ad096932fa89bb53f03f7118926898a.tar.gz |
feat(services): add project service list API
Can be used to list available services
It was introduced in GitLab 12.7
Diffstat (limited to 'gitlab/v4/objects.py')
-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 29b10fc..525c05c 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -3995,7 +3995,7 @@ class ProjectService(SaveMixin, ObjectDeleteMixin, RESTObject): pass -class ProjectServiceManager(GetMixin, UpdateMixin, DeleteMixin, RESTManager): +class ProjectServiceManager(GetMixin, UpdateMixin, DeleteMixin, ListMixin, RESTManager): _path = "/projects/%(project_id)s/services" _from_parent_attrs = {"project_id": "id"} _obj_cls = ProjectService |