diff --git a/server/routes/detections.js b/server/routes/detections.js index 275c382..2073467 100644 --- a/server/routes/detections.js +++ b/server/routes/detections.js @@ -18,12 +18,6 @@ router.get('/', authenticateToken, async (req, res) => { try { // Get tenant from authenticated user context const tenantId = req.tenantId; - console.log('🔍 Detections - Tenant ID from request:', tenantId); - - // Debug: Check what tenants exist - const allTenants = await Tenant.findAll({ attributes: ['id', 'slug'] }); - console.log('🔍 Detections - All tenants in database:', allTenants.map(t => ({ id: t.id, slug: t.slug }))); - if (!tenantId) { return res.status(400).json({ success: false, @@ -32,7 +26,6 @@ router.get('/', authenticateToken, async (req, res) => { } const tenant = await Tenant.findOne({ where: { slug: tenantId } }); - console.log('🔍 Detections - Tenant lookup result:', tenant ? `Found: ${tenant.slug}` : 'Not found'); if (!tenant) { return res.status(404).json({ success: false, @@ -122,14 +115,17 @@ router.get('/', authenticateToken, async (req, res) => { }); res.json({ - detections: enhancedDetections, - pagination: { - currentPage: parseInt(page), - totalPages, - totalCount, - limit: parseInt(limit), - hasNextPage, - hasPrevPage + success: true, + data: { + detections: enhancedDetections, + pagination: { + currentPage: parseInt(page), + totalPages, + totalCount, + limit: parseInt(limit), + hasNextPage, + hasPrevPage + } } }); diff --git a/server/tests/routes/detections.test.js b/server/tests/routes/detections.test.js index eb7233c..673396c 100644 --- a/server/tests/routes/detections.test.js +++ b/server/tests/routes/detections.test.js @@ -39,7 +39,6 @@ describe('Detections Routes', () => { describe('GET /detections', () => { it('should return detections for user tenant', async () => { const tenant = await createTestTenant({ slug: 'test-tenant' }); - console.log('🔍 Test - Created tenant:', { id: tenant.id, slug: tenant.slug }); const user = await createTestUser({ tenant_id: tenant.id }); const device = await createTestDevice({ tenant_id: tenant.id }); const detection = await createTestDetection({ device_id: device.id }); @@ -49,9 +48,6 @@ describe('Detections Routes', () => { .get('/detections') .set('Authorization', `Bearer ${token}`); - console.log('🔍 Test - Response status:', response.status); - console.log('🔍 Test - Response body:', response.body); - expect(response.status).to.equal(200); expect(response.body.success).to.be.true; expect(response.body.data.detections).to.be.an('array');