1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00

Merge pull request #2810 from Budibase/fix/save-user

Fix saveUser by adding same tenant check
This commit is contained in:
Rory Powell 2021-09-30 11:00:03 +01:00 committed by GitHub
commit 9afad2b744
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,7 @@ async function saveUser(
// check budibase users in other tenants // check budibase users in other tenants
if (env.MULTI_TENANCY) { if (env.MULTI_TENANCY) {
dbUser = await getTenantUser(email) dbUser = await getTenantUser(email)
if (dbUser != null) { if (dbUser != null && dbUser.tenantId !== tenantId) {
throw `Email address ${email} already in use.` throw `Email address ${email} already in use.`
} }
} }
@ -67,7 +67,7 @@ async function saveUser(
// check root account users in account portal // check root account users in account portal
if (!env.SELF_HOSTED) { if (!env.SELF_HOSTED) {
const account = await accounts.getAccount(email) const account = await accounts.getAccount(email)
if (account && account.verified) { if (account && account.verified && account.tenantId !== tenantId) {
throw `Email address ${email} already in use.` throw `Email address ${email} already in use.`
} }
} }