From 78fbf3a7cdd9c3f72d766489825d43881c6c8e2e Mon Sep 17 00:00:00 2001 From: Alexander Borg Date: Sat, 20 Sep 2025 23:12:53 +0200 Subject: [PATCH] Fix jwt-token --- server/scripts/setup-database.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/scripts/setup-database.js b/server/scripts/setup-database.js index a7b3bd8..32a45b4 100644 --- a/server/scripts/setup-database.js +++ b/server/scripts/setup-database.js @@ -240,7 +240,8 @@ const setupDatabase = async () => { channels: ['sms'] }, cooldown_minutes: 30, - is_active: true + is_active: true, + tenant_id: defaultTenant.id } ]); console.log(`✅ Created ${alertRules.length} sample alert rules`);