( groupId: string, panelId: string, name: string, data: any )
| 466 | * Save Group Panel Data to group.extra service |
| 467 | */ |
| 468 | export 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected