Fix saveUser by adding same tenant check

This commit is contained in:
Rory Powell 2021-09-30 10:27:35 +01:00
parent 36daa9fc6a
commit 4ee2d23749
1 changed files with 2 additions and 2 deletions

View File

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