1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00

query optimisation on checklist endpoint

This commit is contained in:
Martin McKeaveney 2022-05-22 18:51:13 +01:00
parent 8ab3fc810b
commit 7299863d28

View file

@ -1,6 +1,7 @@
const {
generateConfigID,
getConfigParams,
getGlobalUserParams,
getScopedFullConfig,
getAllApps,
} = require("@budibase/backend-core/db")
@ -271,6 +272,14 @@ exports.configChecklist = async function (ctx) {
type: Configs.OIDC,
})
// They have set up an global user
const users = await db.allDocs(
getGlobalUserParams(null, {
include_docs: true,
limit: 1,
})
)
ctx.body = {
apps: {
checked: apps.length > 0,
@ -283,7 +292,7 @@ exports.configChecklist = async function (ctx) {
link: "/builder/portal/manage/email",
},
adminUser: {
checked: true,
checked: users && users.rows.length >= 1,
label: "Create your first user",
link: "/builder/portal/manage/users",
},