summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/packages.py
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-10-14 23:30:09 +0200
committerNejc Habjan <hab.nejc@gmail.com>2021-10-14 23:30:09 +0200
commitf84b28386d2b88ffdf8d9c38c7bdd64a2a539296 (patch)
treebbb169741b31563413c3c27606a6a28817cbed11 /gitlab/v4/objects/packages.py
parent79785f0bee2ef6cc9872f816a78c13583dfb77ab (diff)
downloadgitlab-feat/delete-package-files.tar.gz
feat(objects): support delete package files APIfeat/delete-package-files
Diffstat (limited to 'gitlab/v4/objects/packages.py')
-rw-r--r--gitlab/v4/objects/packages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/packages.py b/gitlab/v4/objects/packages.py
index e76a5c6..d049d28 100644
--- a/gitlab/v4/objects/packages.py
+++ b/gitlab/v4/objects/packages.py
@@ -162,7 +162,7 @@ class ProjectPackageFile(RESTObject):
pass
-class ProjectPackageFileManager(ListMixin, RESTManager):
+class ProjectPackageFileManager(DeleteMixin, ListMixin, RESTManager):
_path = "/projects/%(project_id)s/packages/%(package_id)s/package_files"
_obj_cls = ProjectPackageFile
_from_parent_attrs = {"project_id": "project_id", "package_id": "id"}