MCPcopy Create free account
hub / github.com/msgbyte/tailchat / removeGroupMemberRoles

Function removeGroupMemberRoles

client/shared/model/group.ts:190–200  ·  view source on GitHub ↗
(
  groupId: string,
  memberIds: string[],
  roles: string[]
)

Source from the content-addressed store, hash-verified

188 * @param roles 权限组名
189 */
190export 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 * 创建群组邀请码

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected