- companies-list now feeds the manual-search fallback for authenticated
UI (Needs Review tab), closes previously-unauthenticated gap
- response shape unchanged: [{ id, company_name }]
18 lines
659 B
TypeScript
18 lines
659 B
TypeScript
import { NextResponse } from 'next/server';
|
|
import { requireAuth } from '@/lib/auth-utils';
|
|
import { postgresClient } from '@/lib/services/postgres-client';
|
|
|
|
export async function GET() {
|
|
const { error } = await requireAuth();
|
|
if (error) return error;
|
|
|
|
try {
|
|
const result = await postgresClient.query(
|
|
`SELECT id, company_name FROM companies WHERE is_active = true AND is_deleted = false ORDER BY company_name ASC`
|
|
);
|
|
return NextResponse.json(result.rows);
|
|
} catch (error) {
|
|
console.error('Error fetching companies list:', error);
|
|
return NextResponse.json({ error: 'Failed to fetch companies list' }, { status: 500 });
|
|
}
|
|
}
|