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/project_packages.rb')
-rw-r--r--lib/api/project_packages.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/api/project_packages.rb b/lib/api/project_packages.rb
index 2aa6858e41d..6b2ba41f013 100644
--- a/lib/api/project_packages.rb
+++ b/lib/api/project_packages.rb
@@ -5,8 +5,6 @@ module API
include Gitlab::Utils::StrongMemoize
include PaginationParams
- PIPELINE_COLUMNS = %i[id iid project_id sha ref status source created_at updated_at user_id].freeze
-
before do
authorize_packages_access!(user_project)
end
@@ -110,7 +108,7 @@ module API
package.build_infos.without_empty_pipelines,
paginator_params: { per_page: declared_params[:per_page], cursor: declared_params[:cursor] }
) do |results|
- ::Ci::Pipeline.id_in(results.map(&:pipeline_id)).select(PIPELINE_COLUMNS).order_id_desc
+ ::Packages::PipelinesFinder.new(results.map(&:pipeline_id)).execute
end
present pipelines, with: ::API::Entities::Package::Pipeline, user: current_user