1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00

Merge pull request #2771 from Budibase/feature/subdomain-tenantid

adding subdomain checking to tenancy middleware
This commit is contained in:
Martin McKeaveney 2021-09-29 09:56:53 +01:00 committed by GitHub
commit 3c40444b33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,6 +53,11 @@ exports.setTenantId = (
// processed later in the chain
tenantId = user.tenantId || header || tenantId
// Set the tenantId from the subdomain
if (!tenantId) {
tenantId = ctx.subdomains && ctx.subdomains[0]
}
if (!tenantId && !allowNoTenant) {
ctx.throw(403, "Tenant id not set")
}