MCPcopy Create free account
hub / github.com/Openpanel-dev/openpanel / findGroupsCore

Function findGroupsCore

packages/db/src/services/group.service.ts:359–371  ·  view source on GitHub ↗
(input: {
  projectId: string;
  type?: string;
  search?: string;
  limit?: number;
})

Source from the content-addressed store, hash-verified

357}
358
359export 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
373export async function getGroupCore(input: {
374 projectId: string;

Callers 2

findGroupsFunction · 0.90
groups.tsFile · 0.90

Calls 1

getGroupListFunction · 0.85

Tested by

no test coverage detected