Skip to content

Commit

Permalink
项目支持关联运营产品和根据运营产品搜索 #9636
Browse files Browse the repository at this point in the history
  • Loading branch information
fcfang123 committed Nov 8, 2023
1 parent d200be2 commit 734b834
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,7 @@ data class ProjectInfoResponse(
@ApiModelProperty("流水线数量上限")
val pipelineLimit: Int? = 500,
@ApiModelProperty("项目其他设置")
val properties: ProjectProperties?
val properties: ProjectProperties?,
@ApiModelProperty("产品运营ID")
val productId: String? = null
)
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,8 @@ class ProjectTagService @Autowired constructor(
enableExternal = projectData.enableExternal,
enableIdc = projectData.enableIdc,
pipelineLimit = projectData.pipelineLimit,
properties = projectProperties
properties = projectProperties,
productId = projectData.projectId
)
}

Expand Down

0 comments on commit 734b834

Please sign in to comment.