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/helpers/packages/maven.rb')
-rw-r--r--lib/api/helpers/packages/maven.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/api/helpers/packages/maven.rb b/lib/api/helpers/packages/maven.rb
index 71d1ba486ed..6c50f4c00a1 100644
--- a/lib/api/helpers/packages/maven.rb
+++ b/lib/api/helpers/packages/maven.rb
@@ -9,10 +9,12 @@ module API
params :path_and_file_name do
requires :path,
type: String,
+ file_path: true,
desc: 'Package path',
documentation: { example: 'foo/bar/mypkg/1.0-SNAPSHOT' }
requires :file_name,
type: String,
+ file_path: true,
desc: 'Package file name',
documentation: { example: 'mypkg-1.0-SNAPSHOT.jar' }
end
@@ -38,7 +40,7 @@ module API
project || group,
path: params[:path],
order_by_package_file: order_by_package_file
- ).execute
+ ).execute&.last
end
def project