This commit is contained in:
Peter Clement 2021-08-12 14:27:05 +01:00
parent 2479207436
commit a4649c5bc9
1 changed files with 2 additions and 3 deletions

View File

@ -3,13 +3,12 @@ import api from "builderStore/api"
import { auth } from "stores/portal" import { auth } from "stores/portal"
export function createAdminStore() { export function createAdminStore() {
const DEFAULT_CONFIG = { const DEFAULT_CONFIG = {
loaded: false, loaded: false,
multiTenancy: false, multiTenancy: false,
sandbox: false, sandbox: false,
onboardingProgress: 0, onboardingProgress: 0,
checklist: {"apps":0,"smtp":false,"adminUser":false,"sso":false} checklist: { apps: 0, smtp: false, adminUser: false, sso: false },
} }
const admin = writable(DEFAULT_CONFIG) const admin = writable(DEFAULT_CONFIG)