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

Function modifyGroupConfig

client/shared/model/group.ts:131–141  ·  view source on GitHub ↗
(
  groupId: string,
  configName: GroupConfigNames,
  configValue: unknown
)

Source from the content-addressed store, hash-verified

129 * @param configValue 要修改的属性的值
130 */
131export async function modifyGroupConfig(
132 groupId: string,
133 configName: GroupConfigNames,
134 configValue: unknown
135) {
136 await request.post('/api/group/updateGroupConfig', {
137 groupId,
138 configName,
139 configValue,
140 });
141}
142
143/**
144 * 退出群组(群组拥有者是解散群组)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected