(input: {
projectId: string;
type?: string;
search?: string;
limit?: number;
})
| 357 | } |
| 358 | |
| 359 | export async function findGroupsCore(input: { |
| 360 | projectId: string; |
| 361 | type?: string; |
| 362 | search?: string; |
| 363 | limit?: number; |
| 364 | }) { |
| 365 | return getGroupList({ |
| 366 | projectId: input.projectId, |
| 367 | type: input.type, |
| 368 | search: input.search, |
| 369 | take: input.limit ?? 20, |
| 370 | }); |
| 371 | } |
| 372 | |
| 373 | export async function getGroupCore(input: { |
| 374 | projectId: string; |
no test coverage detected