Skip to content

Commit 7cdb07d

Browse files
author
Léo GATELLIER
committed
fix(api): delete invalid 'project-runner get' command
1 parent 4170dbe commit 7cdb07d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gitlab/v4/objects/runners.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
from gitlab import types
44
from gitlab.base import RequiredOptional, RESTManager, RESTObject
55
from gitlab.mixins import (
6+
CreateMixin,
67
CRUDMixin,
8+
DeleteMixin,
79
ListMixin,
810
NoUpdateMixin,
911
ObjectDeleteMixin,
@@ -131,7 +133,7 @@ class ProjectRunner(ObjectDeleteMixin, RESTObject):
131133
pass
132134

133135

134-
class ProjectRunnerManager(NoUpdateMixin, RESTManager):
136+
class ProjectRunnerManager(CreateMixin, DeleteMixin, ListMixin, RESTManager):
135137
_path = "/projects/%(project_id)s/runners"
136138
_obj_cls = ProjectRunner
137139
_from_parent_attrs = {"project_id": "id"}

0 commit comments

Comments
 (0)