From fc5222188ad096932fa89bb53f03f7118926898a Mon Sep 17 00:00:00 2001 From: Max Wittig Date: Thu, 16 Apr 2020 10:07:45 +0200 Subject: feat(services): add project service list API Can be used to list available services It was introduced in GitLab 12.7 --- gitlab/v4/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gitlab/v4/objects.py') 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 -- cgit v1.2.1