util: Do not expose the entire application config, only relevant parts
continuous-integration/appveyor/branch AppVeyor build succeeded Details

master v2.0.3
Jonatan Nilsson 2022-04-02 20:13:35 +00:00
parent e853474cdd
commit 7f6d1546f2
3 changed files with 9 additions and 2 deletions

View File

@ -22,7 +22,12 @@ export function getConfig(ctx) {
applications: []
}
for (let app of ctx.core.applications) {
merge[app.name] = app.config
merge[app.name] = {
provider: app.config.provider || null,
url: app.config.url || null,
port: app.config.port || null,
scAllowStop: app.config.scAllowStop || null,
}
merge.applications.push(app.name)
}
return defaults(ctx.db.config, merge)

View File

@ -10,6 +10,8 @@ const core = {
status: {},
}
window.core = core
socket.on('core.config', function(res) {
core.apps = []
let keys = Object.keys(res)

View File

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