Files
AnchorOS/app/api/locations/route.ts
2026-01-18 00:09:50 -06:00

35 lines
829 B
TypeScript

import { NextRequest, NextResponse } from 'next/server'
import { supabase } from '@/lib/supabase/client'
/**
* @description Retrieves all active locations
*/
export async function GET(request: NextRequest) {
try {
const { data: locations, error } = await supabase
.from('locations')
.select('*')
.eq('is_active', true)
.order('name', { ascending: true })
if (error) {
console.error('Locations GET error:', error)
return NextResponse.json(
{ error: error.message },
{ status: 500 }
)
}
return NextResponse.json({
success: true,
locations: locations || []
})
} catch (error) {
console.error('Locations GET error:', error)
return NextResponse.json(
{ error: 'Internal server error' },
{ status: 500 }
)
}
}