From 89749b824df91f8bf3f03e8a3066cf2cdfa1e971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krzysteczko?= Date: Wed, 17 Dec 2025 12:03:43 +0100 Subject: [PATCH] fix: assigned but unused variable - identity --- script/create-identities.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/create-identities.rb b/script/create-identities.rb index 2411f1b0c..ee7ddfb1c 100644 --- a/script/create-identities.rb +++ b/script/create-identities.rb @@ -11,7 +11,7 @@ ApplicationRecord.with_each_tenant do |tenant| # Use IdentityProvider to link the user's email to this tenant # This will find_or_create the identity and link it to the tenant - identity = IdentityProvider.link(email_address: user.email_address, to: tenant) + IdentityProvider.link(email_address: user.email_address, to: tenant) puts " ✅ Linked identity for user #{user.id} (#{user.email_address}) to tenant '#{tenant}'" end