1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00

Merge branch 'feature/self-hosting' of github.com:Budibase/budibase into feature/self-hosting

This commit is contained in:
mike12345567 2021-01-07 11:39:15 +00:00
commit 76959922f6

View file

@ -68,26 +68,24 @@
},
]
let steps = []
function buildStep(component) {
return {
component,
errors,
}
}
// steps need to be initialized for cypress from the get go
let steps = [buildStep(API), buildStep(Info), buildStep(User)]
onMount(async () => {
let hostingInfo = await hostingStore.actions.fetch()
steps = []
// only validate API key for Cloud
if (hostingInfo.type === "cloud") {
steps.push({
component: API,
errors,
})
// re-init the steps based on whether self hosting or cloud hosted
if (hostingInfo.type === "self") {
steps = [buildStep(Info), buildStep(User)]
} else {
steps = [buildStep(API), buildStep(Info), buildStep(User)]
}
steps.push({
component: Info,
errors,
})
steps.push({
component: User,
errors,
})
})
if (hasKey) {