This commit is contained in:
2026-06-25 12:05:53 -05:00
commit b58e50e423
141 changed files with 28190 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { Router } from 'express';
import { index, show } from '../controllers/helpController.js';
import { requireAuth } from '../middleware/auth.js';
export const helpRoutes = Router();
// Searchable in-app help library for operators and API automation clients.
helpRoutes.get('/', requireAuth, index);
helpRoutes.get('/:id', requireAuth, show);