We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a1678f commit 7ce5770Copy full SHA for 7ce5770
gitlab/v4/objects/runners.py
@@ -3,7 +3,9 @@
3
from gitlab import types
4
from gitlab.base import RequiredOptional, RESTManager, RESTObject
5
from gitlab.mixins import (
6
+ CreateMixin,
7
CRUDMixin,
8
+ DeleteMixin,
9
ListMixin,
10
NoUpdateMixin,
11
ObjectDeleteMixin,
@@ -131,7 +133,7 @@ class ProjectRunner(ObjectDeleteMixin, RESTObject):
131
133
pass
132
134
135
-class ProjectRunnerManager(NoUpdateMixin, RESTManager):
136
+class ProjectRunnerManager(CreateMixin, DeleteMixin, ListMixin, RESTManager):
137
_path = "/projects/%(project_id)s/runners"
138
_obj_cls = ProjectRunner
139
_from_parent_attrs = {"project_id": "id"}
0 commit comments