diff --git a/server/routes/detections.js b/server/routes/detections.js index b62e42e..4131644 100644 --- a/server/routes/detections.js +++ b/server/routes/detections.js @@ -29,7 +29,6 @@ router.get('/', authenticateToken, async (req, res) => { // Get tenant from authenticated user context const tenantId = req.tenantId; - console.log('🔍 Looking for tenant with slug:', tenantId); if (!tenantId) { return res.status(400).json({ success: false, @@ -38,12 +37,6 @@ router.get('/', authenticateToken, async (req, res) => { } const tenant = await Tenant.findOne({ where: { slug: tenantId } }); - console.log('🔍 Tenant lookup result:', tenant ? `Found tenant ${tenant.slug}` : 'Tenant not found'); - - // Debug: Let's see what tenants exist - const allTenants = await Tenant.findAll(); - console.log('🔍 All tenants in database:', allTenants.map(t => ({ id: t.id, slug: t.slug }))); - if (!tenant) { return res.status(404).json({ success: false, diff --git a/server/tests/routes/detections.test.js b/server/tests/routes/detections.test.js index 89cd1c4..db2b347 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('🔍 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 });