( groupId: string, memberIds: string[], roles: string[] )
| 188 | * @param roles 权限组名 |
| 189 | */ |
| 190 | export async function removeGroupMemberRoles( |
| 191 | groupId: string, |
| 192 | memberIds: string[], |
| 193 | roles: string[] |
| 194 | ) { |
| 195 | await request.post('/api/group/removeGroupMemberRoles', { |
| 196 | groupId, |
| 197 | memberIds, |
| 198 | roles, |
| 199 | }); |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * 创建群组邀请码 |
nothing calls this directly
no outgoing calls
no test coverage detected