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

Function getAllGroupInviteCode

client/shared/model/group.ts:244–257  ·  view source on GitHub ↗
(
  groupId: string
)

Source from the content-addressed store, hash-verified

242 * @param groupId 群组ID
243 */
244export async function getAllGroupInviteCode(
245 groupId: string
246): Promise<GroupInvite[]> {
247 const { data } = await request.get(
248 '/api/group/invite/getAllGroupInviteCode',
249 {
250 params: {
251 groupId,
252 },
253 }
254 );
255
256 return data;
257}
258
259/**
260 * 根据邀请码查找邀请信息

Callers 1

Invite.tsxFile · 0.85

Calls 1

getMethod · 0.45

Tested by

no test coverage detected