Fix jwt-token

This commit is contained in:
2025-09-14 17:52:18 +02:00
parent 17430917e8
commit 46a40074bd

View File

@@ -166,16 +166,21 @@ class IPRestrictionMiddleware {
} }
// Get tenant configuration // Get tenant configuration
const tenant = await Tenant.findOne({ where: { slug: tenantId } }); const tenant = await Tenant.findOne({
where: { slug: tenantId },
attributes: ['id', 'slug', 'ip_restriction_enabled', 'ip_whitelist', 'ip_restriction_message', 'updated_at']
});
if (!tenant) { if (!tenant) {
console.log('🔍 IP Restriction - Tenant not found in database:', tenantId); console.log('🔍 IP Restriction - Tenant not found in database:', tenantId);
return next(); return next();
} }
console.log('🔍 IP Restriction - Tenant config:', { console.log('🔍 IP Restriction - Tenant config (fresh from DB):', {
id: tenant.id,
slug: tenant.slug, slug: tenant.slug,
ip_restriction_enabled: tenant.ip_restriction_enabled, ip_restriction_enabled: tenant.ip_restriction_enabled,
ip_whitelist: tenant.ip_whitelist ip_whitelist: tenant.ip_whitelist,
updated_at: tenant.updated_at
}); });
// Check if IP restrictions are enabled // Check if IP restrictions are enabled