MCPcopy Index your code
hub / github.com/Linen-dev/linen.dev / list

Method list

apps/web/services/api-keys.ts:28–33  ·  view source on GitHub ↗
({ accountId }: { accountId: string })

Source from the content-addressed store, hash-verified

26 }
27
28 static async list({ accountId }: { accountId: string }) {
29 return await prisma.apiKeys.findMany({
30 select: { id: true, createdAt: true, name: true, scope: true },
31 where: { accountId },
32 });
33 }
34
35 static async create({
36 accountId,

Callers 5

runSampleFunction · 0.80
indexFunction · 0.80
indexFunction · 0.80
api-keys.test.tsFile · 0.80
api-keys.tsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected