Release 1.4.0: Phase 1 Symbol-Architektur Redesign
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 20m43s

This commit is contained in:
Pepe Ziberi
2026-05-20 21:44:07 +02:00
parent cfccd4cdcc
commit f6819b6a2b
3 changed files with 42 additions and 3 deletions

View File

@@ -6,10 +6,10 @@ import { join } from 'path'
export async function GET(
request: NextRequest,
{ params }: { params: { id: string } }
{ params }: { params: Promise<{ id: string }> }
) {
try {
const id = params.id
const { id } = await params
// ─── 1. Try TenantSymbol first (Phase 1 architecture) ───
const tenantSymbol = await (prisma as any).tenantSymbol.findUnique({