Changeset 299af01 for src/app/api/tenant/route.ts
- Timestamp:
- 02/26/25 14:27:26 (6 weeks ago)
- Branches:
- main
- Children:
- 3c5302a
- Parents:
- 057453c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/app/api/tenant/route.ts
r057453c r299af01 1 import { NextRe sponse } from 'next/server';1 import { NextRequest, NextResponse } from 'next/server'; 2 2 import prisma from 'src/lib/prisma'; 3 3 import { tenantSchema } from 'src/schemas'; 4 4 import { z } from 'zod'; 5 import { authenticateRequest } from 'src/lib/auth-middleware'; 5 6 6 export async function GET( ) {7 export async function GET(request: NextRequest) { 7 8 try { 8 const tenants = await prisma.tenant.findMany(); 9 const tenant = tenants[0]; // Get first tenant since we're dealing with single tenant 10 console.log('tenant', tenant); 9 const auth = await authenticateRequest(request); 10 if (auth instanceof NextResponse) { 11 return auth; // Return error response if authentication failed 12 } 13 const { tenantId } = auth; 14 15 const tenant = await prisma.tenant.findUnique({ 16 where: { id: tenantId }, 17 }); 18 11 19 if (!tenant) { 12 20 return NextResponse.json({ error: 'No tenant found' }, { status: 404 }); … … 20 28 } 21 29 22 export async function POST(request: Request) {30 export async function POST(request: NextRequest) { 23 31 try { 32 const auth = await authenticateRequest(request); 33 if (auth instanceof NextResponse) { 34 return auth; 35 } 36 const { tenantId } = auth; 37 24 38 const body = await request.json(); 25 39 … … 28 42 29 43 // Check if tenant already exists 30 const existingTenants = await prisma.tenant.findMany(); 31 if (existingTenants.length > 0) { 44 const existingTenant = await prisma.tenant.findUnique({ 45 where: { 46 id: tenantId, 47 }, 48 }); 49 50 if (existingTenant) { 32 51 return NextResponse.json({ error: 'Tenant already exists' }, { status: 400 }); 33 52 } 34 53 35 // Create new tenant 54 // Create new tenant with the authenticated tenantId 36 55 const tenant = await prisma.tenant.create({ 37 data: validatedData, 56 data: { 57 ...validatedData, 58 id: tenantId, // Ensure the tenant is created with the authenticated tenantId 59 }, 38 60 }); 39 61
Note:
See TracChangeset
for help on using the changeset viewer.