diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-10-14 23:30:09 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2021-10-14 16:24:41 -0700 |
commit | 45180466a408cd51c3ea4fead577eb0e1f3fe7f8 (patch) | |
tree | 6de755c14b69a481a8b60908b9841fd26704272a /gitlab/v4/objects | |
parent | 47a56061421fc8048ee5cceaf47ac031c92aa1da (diff) | |
download | gitlab-45180466a408cd51c3ea4fead577eb0e1f3fe7f8.tar.gz |
feat(objects): support delete package files API
Diffstat (limited to 'gitlab/v4/objects')
-rw-r--r-- | gitlab/v4/objects/packages.py | 2 |
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"} |