fixed 组织流水线按仓库分页

This commit is contained in:
xxq250 2025-04-21 17:05:08 +08:00
parent 492561c405
commit ed8593071f
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ json.projects @pipelines.map(&:project_id).uniq.each do |project_id|
json.identifier project.identifier
json.name project.name
json.url "#{Rails.application.config_for(:configuration)['platform_url']}/#{project.owner.name}/#{project.identifier}"
json.pipelines @pipelines.select { |p| p.project_id == project_id }.each do |id|
pipeline = Action::Pipeline.find_by(id: id)
pipelines = Action::Pipeline.where(project_id: @project.id).order(updated_at: :desc)
json.pipelines pipelines.each do |pipeline|
json.extract! pipeline, :id, :project_id, :pipeline_name, :pipeline_status, :description, :file_name, :is_graphic_design,
:repo_name, :repo_identifier, :branch, :event, :sha, :disable, :json, :yaml, :created_at, :updated_at
repo_config = @disabled_workflows.select { |config| config.repo_id = pipeline.project.gpid }