From 0a6ab8772b7f890cb2187ba34c61f603b097e981 Mon Sep 17 00:00:00 2001 From: Alexander Borg Date: Tue, 16 Sep 2025 21:44:14 +0200 Subject: [PATCH] Fix jwt-token --- server/tests/routes/auth.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/tests/routes/auth.test.js b/server/tests/routes/auth.test.js index 3eace18..ad931d9 100644 --- a/server/tests/routes/auth.test.js +++ b/server/tests/routes/auth.test.js @@ -301,8 +301,8 @@ describe('Auth Routes', () => { const tenant = await createTestTenant({ slug: 'test-tenant', allow_registration: true, - ip_restrictions_enabled: true, - allowed_ips: '192.168.1.1' + ip_restriction_enabled: true, + ip_whitelist: ['192.168.1.1'] }); const response = await request(app)