Merge pull request #2810 from Budibase/fix/save-user
Fix saveUser by adding same tenant check
This commit is contained in:
commit
4d873a00bc
|
@ -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.`
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue