({ accountId }: { accountId: string })
| 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, |
no outgoing calls
no test coverage detected