1
0
Fork 0
mirror of synced 2024-06-21 11:51:00 +12:00

Fixing issue with applications not being created due to a lack of template file.

This commit is contained in:
mike12345567 2021-03-16 13:43:46 +00:00
parent 5da828a11c
commit bc18959f87

View file

@ -162,11 +162,14 @@ exports.fetchAppPackage = async function(ctx) {
exports.create = async function(ctx) { exports.create = async function(ctx) {
const { useTemplate, templateKey } = ctx.request.body const { useTemplate, templateKey } = ctx.request.body
const instance = await createInstance({ const instanceConfig = {
useTemplate, useTemplate,
key: templateKey, key: templateKey,
file: ctx.request.files.templateFile, }
}) if (ctx.request.files && ctx.request.files.templateFile) {
instanceConfig.file = ctx.request.files.templateFile
}
const instance = await createInstance(instanceConfig)
const url = await getAppUrlIfNotInUse(ctx) const url = await getAppUrlIfNotInUse(ctx)
const appId = instance._id const appId = instance._id