Skip to content

Commit

Permalink
丰富流水线-stage准入的审核功能,支持配置角色或用户组作为审核人 #10689
Browse files Browse the repository at this point in the history
  • Loading branch information
yongyiduan committed Sep 14, 2024
1 parent df51f11 commit 4b86174
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ data class ProjectGroupAndUsers(
val groupName: String,
@get:Schema(title = "组ID")
val groupId: String,
@get:Schema(title = "组数字ID")
val groupRoleId: Int,
@get:Schema(title = "组员")
val users: Set<String>
)
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ class QualityNotifyGroupService @Autowired constructor(
ProjectGroupAndUsers(
groupName = it.displayName,
groupId = it.roleName,
groupRoleId = it.roleId,
users = it.userIdList.toSet()
)
}
Expand Down

0 comments on commit 4b86174

Please sign in to comment.