util: Fix bug where application config was still being leaked
continuous-integration/appveyor/branch AppVeyor build succeeded Details

master v2.0.4
Jonatan Nilsson 2022-04-02 20:21:46 +00:00
parent 7f6d1546f2
commit bdaf58b7b0
2 changed files with 5 additions and 3 deletions

View File

@ -19,7 +19,9 @@ export function safeWrap(log, name, fn) {
export function getConfig(ctx) {
let merge = {
applications: []
applications: [],
name: ctx.db.config.name || '',
title: ctx.db.config.title || '',
}
for (let app of ctx.core.applications) {
merge[app.name] = {
@ -30,7 +32,7 @@ export function getConfig(ctx) {
}
merge.applications.push(app.name)
}
return defaults(ctx.db.config, merge)
return merge
}
export function getApp(ctx, name, action) {

View File

@ -1,6 +1,6 @@
{
"name": "sc-manager",
"version": "2.0.3",
"version": "2.0.4",
"description": "",
"main": "index.js",
"scripts": {