Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/package_files.rb')
-rw-r--r--lib/api/package_files.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/api/package_files.rb b/lib/api/package_files.rb
index 4a33f3e8af2..6d0c1f44a36 100644
--- a/lib/api/package_files.rb
+++ b/lib/api/package_files.rb
@@ -30,6 +30,29 @@ module API
present paginate(package.package_files), with: ::API::Entities::PackageFile
end
+
+ desc 'Remove a package file' do
+ detail 'This feature was introduced in GitLab 13.12'
+ end
+ params do
+ requires :package_file_id, type: Integer, desc: 'The ID of a package file'
+ end
+ delete ':id/packages/:package_id/package_files/:package_file_id' do
+ authorize_destroy_package!(user_project)
+
+ # We want to make sure the file belongs to the declared package
+ # so we look up the package before looking up the file.
+ package = ::Packages::PackageFinder
+ .new(user_project, params[:package_id]).execute
+
+ not_found! unless package
+
+ package_file = package.package_files.find_by_id(params[:package_file_id])
+
+ not_found! unless package_file
+
+ destroy_conditionally!(package_file)
+ end
end
end
end