PR comments.
This commit is contained in:
parent
078cf9e95f
commit
2f27e750f5
|
@ -67,7 +67,10 @@ export const getTenantIDFromAppID = (appId: string) => {
|
|||
|
||||
// used for automations, API endpoints should always be in context already
|
||||
export const doInTenant = (tenantId: string | null, task: any) => {
|
||||
tenantId = tenantId || DEFAULT_TENANT_ID
|
||||
// make sure default always selected in single tenancy
|
||||
if (!env.MULTI_TENANCY) {
|
||||
tenantId = tenantId || DEFAULT_TENANT_ID
|
||||
}
|
||||
// the internal function is so that we can re-use an existing
|
||||
// context - don't want to close DB on a parent context
|
||||
async function internal(opts = { existing: false }) {
|
||||
|
|
Loading…
Reference in New Issue