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

Function getGroupPanelExtraData

client/shared/model/group.ts:451–463  ·  view source on GitHub ↗
(
  groupId: string,
  panelId: string,
  name: string
)

Source from the content-addressed store, hash-verified

449 * Get Group Panel Data from group.extra service
450 */
451export async function getGroupPanelExtraData(
452 groupId: string,
453 panelId: string,
454 name: string
455): Promise<string | null> {
456 const { data } = await request.post('/api/group/extra/getPanelData', {
457 groupId,
458 panelId,
459 name,
460 });
461
462 return data.data ?? null;
463}
464
465/**
466 * Save Group Panel Data to group.extra service

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected