1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00

Adding a check to make sure there is a tenant ID for the checklist call when looking up apps in multi-tenant envs.

This commit is contained in:
mike12345567 2022-02-16 12:36:24 +00:00
parent 73ee8fea29
commit 1b124bfb56

View file

@ -246,12 +246,16 @@ exports.destroy = async function (ctx) {
exports.configChecklist = async function (ctx) {
const db = getGlobalDB()
const tenantId = getTenantId()
try {
// TODO: Watch get started video
// Apps exist
const apps = await getAllApps({ idsOnly: true, efficient: true })
let apps = []
if (!env.MULTI_TENANCY || tenantId) {
// Apps exist
apps = await getAllApps({ idsOnly: true, efficient: true })
}
// They have set up SMTP
const smtpConfig = await getScopedFullConfig(db, {