mirror of
https://github.com/marcogll/AnchorOS.git
synced 2026-03-15 13:24:27 +00:00
feat: Add kiosk management, artist selection, and schedule management
- Add KiosksManagement component with full CRUD for kiosks - Add ScheduleManagement for staff schedules with break reminders - Update booking flow to allow artist selection by customers - Add staff_services API for assigning services to artists - Update staff management UI with service assignment dialog - Add auto-break reminder when schedule >= 8 hours - Update availability API to filter artists by service - Add kiosk management to Aperture dashboard - Clean up ralphy artifacts and logs
This commit is contained in:
@@ -2,7 +2,15 @@ import { NextRequest, NextResponse } from 'next/server'
|
||||
import { supabaseAdmin } from '@/lib/supabase/admin'
|
||||
|
||||
/**
|
||||
* @description Gets all active locations
|
||||
* @description Retrieves all active salon locations with their details for dropdown/selection UI
|
||||
* @param {NextRequest} request - HTTP request (no body required)
|
||||
* @returns {NextResponse} JSON with success status and array of active locations sorted by name
|
||||
* @example GET /api/aperture/locations
|
||||
* @audit BUSINESS RULE: Only active locations returned for booking availability
|
||||
* @audit SECURITY: Location data is public-facing but RLS policies still applied
|
||||
* @audit Validate: No query parameters - returns all active locations
|
||||
* @audit PERFORMANCE: Indexed query on is_active and name columns for fast retrieval
|
||||
* @audit DATA INTEGRITY: Timezone field critical for appointment scheduling conversions
|
||||
*/
|
||||
export async function GET(request: NextRequest) {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user