(workspaceId: string)
| 123 | * Get all short links for a workspace |
| 124 | */ |
| 125 | export async function getWorkspaceShortLinks(workspaceId: string) { |
| 126 | const shortLinks = await prisma.shortLink.findMany({ |
| 127 | where: { |
| 128 | workspaceId, |
| 129 | deletedAt: null, |
| 130 | }, |
| 131 | orderBy: { |
| 132 | updatedAt: 'desc', |
| 133 | }, |
| 134 | }); |
| 135 | |
| 136 | return shortLinks; |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Record access log for short link |