Browse Source
Merge pull request #2603 from Budibase/fix/multitenancy-app-fetch
fix app fetching
gh-pages
Martin McKeaveney
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
packages/auth/src/db/utils.js
|
|
|
@ -231,9 +231,12 @@ exports.getAllApps = async (CouchDB, { dev, all, idsOnly } = {}) => { |
|
|
|
const split = dbName.split(SEPARATOR) |
|
|
|
// it is an app, check the tenantId
|
|
|
|
if (split[0] === DocumentTypes.APP) { |
|
|
|
const noTenantId = split.length === 2 || split[1] === DocumentTypes.DEV |
|
|
|
// tenantId is always right before the UUID
|
|
|
|
const possibleTenantId = split[split.length - 2] |
|
|
|
|
|
|
|
const noTenantId = |
|
|
|
split.length === 2 || possibleTenantId === DocumentTypes.DEV |
|
|
|
|
|
|
|
return ( |
|
|
|
(tenantId === DEFAULT_TENANT_ID && noTenantId) || |
|
|
|
possibleTenantId === tenantId |
|
|
|
|