ca-grow-ops-manager/backend/src/routes/walkthrough-settings.routes.ts
fullsizemalt e240ec7911 feat(phase2): Implement Phase 2 - Plant Touch Points & IPM
Added PlantTouchPoint and IPMSchedule models. Implemented touch-points and IPM controllers/routes. Updated frontend with Dashboard feed and IPM widgets.
2025-12-09 21:22:47 -08:00

7 lines
288 B
TypeScript

import { FastifyInstance } from 'fastify';
import { getSettings, updateSettings } from '../controllers/walkthrough-settings.controller';
export async function walkthroughSettingsRoutes(server: FastifyInstance) {
server.get('/', getSettings);
server.patch('/', updateSettings);
}