Skip to content

Commit

Permalink
feat:支持管理员查看项目成员 TencentBlueKing#9620
Browse files Browse the repository at this point in the history
  • Loading branch information
mingshewhe committed Jul 2, 2024
1 parent eae2ac9 commit 88e6285
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ package com.tencent.devops.auth.provider.sample.service
import com.tencent.devops.auth.pojo.dto.GroupAddDTO
import com.tencent.devops.auth.pojo.dto.ListGroupConditionDTO
import com.tencent.devops.auth.pojo.dto.RenameGroupDTO
import com.tencent.devops.auth.pojo.vo.GroupDetailsInfoVo
import com.tencent.devops.auth.pojo.vo.GroupPermissionDetailVo
import com.tencent.devops.auth.pojo.vo.IamGroupInfoVo
import com.tencent.devops.auth.pojo.vo.IamGroupMemberInfoVo
Expand Down Expand Up @@ -94,4 +95,14 @@ class SamplePermissionResourceGroupService : PermissionResourceGroupService {
projectId: String,
groupCode: String
) = true

override fun getMemberGroupsDetails(
projectId: String,
resourceType: String,
member: String,
start: Int,
end: Int
): Pagination<GroupDetailsInfoVo> {
return Pagination(hasNext = false, records = emptyList())
}
}

0 comments on commit 88e6285

Please sign in to comment.