summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r--gitlab/v4/objects.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 6c0c84f..45d01a0 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -462,11 +462,11 @@ class DockerfileManager(RetrieveMixin, RESTManager):
_obj_cls = Dockerfile
-class Feature(RESTObject):
+class Feature(ObjectDeleteMixin, RESTObject):
_id_attr = 'name'
-class FeatureManager(ListMixin, RESTManager):
+class FeatureManager(ListMixin, DeleteMixin, RESTManager):
_path = '/features/'
_obj_cls = Feature