Only create default home screen and layouts when not importing an app
This commit is contained in:
parent
16febcf3b9
commit
dde7cf9fc4
|
@ -230,7 +230,12 @@ exports.create = async function (ctx) {
|
||||||
const response = await db.put(newApplication, { force: true })
|
const response = await db.put(newApplication, { force: true })
|
||||||
newApplication._rev = response.rev
|
newApplication._rev = response.rev
|
||||||
|
|
||||||
|
// Only create the default home screens and layout if we aren't importing
|
||||||
|
// an app
|
||||||
|
if (!useTemplate) {
|
||||||
await createEmptyAppPackage(ctx, newApplication)
|
await createEmptyAppPackage(ctx, newApplication)
|
||||||
|
}
|
||||||
|
|
||||||
/* istanbul ignore next */
|
/* istanbul ignore next */
|
||||||
if (!env.isTest()) {
|
if (!env.isTest()) {
|
||||||
await createApp(appId)
|
await createApp(appId)
|
||||||
|
|
Loading…
Reference in New Issue