Dont need to check user exists for the whitelist

This commit is contained in:
Owen 2026-06-09 15:26:11 -07:00
parent d57f064d4c
commit dd54be523f
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD

View file

@ -1467,17 +1467,6 @@ async function syncWhitelistUsers(
.where(eq(resourceWhitelist.resourceId, resourceId));
for (const email of whitelistUsers) {
const [user] = await trx
.select()
.from(users)
.innerJoin(userOrgs, eq(users.userId, userOrgs.userId))
.where(and(eq(users.email, email), eq(userOrgs.orgId, orgId)))
.limit(1);
if (!user) {
throw new Error(`User not found: ${email} in org ${orgId}`);
}
const existingWhitelistEntry = existingWhitelist.find(
(w) => w.email === email
);