Add new navigation settings to new apps
This commit is contained in:
parent
c8d454c9d9
commit
95cc985646
|
@ -272,6 +272,13 @@ const performAppCreate = async (ctx: any) => {
|
||||||
updatedAt: new Date().toISOString(),
|
updatedAt: new Date().toISOString(),
|
||||||
createdAt: new Date().toISOString(),
|
createdAt: new Date().toISOString(),
|
||||||
status: AppStatus.DEV,
|
status: AppStatus.DEV,
|
||||||
|
navigation: {
|
||||||
|
navigation: "Top",
|
||||||
|
title: name,
|
||||||
|
navWidth: "Large",
|
||||||
|
navBackground: "var(--spectrum-global-color-gray-50)",
|
||||||
|
},
|
||||||
|
theme: "spectrum--light",
|
||||||
}
|
}
|
||||||
const response = await db.put(newApplication, { force: true })
|
const response = await db.put(newApplication, { force: true })
|
||||||
newApplication._rev = response.rev
|
newApplication._rev = response.rev
|
||||||
|
|
Loading…
Reference in New Issue