Fix getting started checklist links

This commit is contained in:
Andrew Kingston 2023-07-18 16:14:59 +01:00
parent a2238911fa
commit cd8414e6a1
1 changed files with 3 additions and 3 deletions

View File

@ -507,17 +507,17 @@ export async function configChecklist(ctx: Ctx) {
smtp: { smtp: {
checked: !!smtpConfig, checked: !!smtpConfig,
label: "Set up email", label: "Set up email",
link: "/builder/portal/manage/email", link: "/builder/portal/settings/email",
}, },
adminUser: { adminUser: {
checked: userExists, checked: userExists,
label: "Create your first user", label: "Create your first user",
link: "/builder/portal/manage/users", link: "/builder/portal/users/users",
}, },
sso: { sso: {
checked: !!googleConfig || !!oidcConfig, checked: !!googleConfig || !!oidcConfig,
label: "Set up single sign-on", label: "Set up single sign-on",
link: "/builder/portal/manage/auth", link: "/builder/portal/settings/auth",
}, },
} }
} }