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

Function saveGroupPanelExtraData

client/shared/model/group.ts:468–480  ·  view source on GitHub ↗
(
  groupId: string,
  panelId: string,
  name: string,
  data: any
)

Source from the content-addressed store, hash-verified

466 * Save Group Panel Data to group.extra service
467 */
468export async function saveGroupPanelExtraData(
469 groupId: string,
470 panelId: string,
471 name: string,
472 data: any
473): Promise<void> {
474 await request.post('/api/group/extra/savePanelData', {
475 groupId,
476 panelId,
477 name,
478 data: typeof data === 'string' ? data : JSON.stringify(data),
479 });
480}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected