fix missing doc resources for launchers, closes #3455

This commit is contained in:
zadam
2022-12-25 11:58:24 +01:00
parent c6485f8e03
commit 7c98ade72b
15 changed files with 36 additions and 27 deletions

View File

@@ -4,6 +4,7 @@ const sqlInit = require('../services/sql_init');
const setupService = require('../services/setup');
const utils = require('../services/utils');
const assetPath = require("../services/asset_path");
const appPath = require("../services/app_path.js");
function setupPage(req, res) {
if (sqlInit.isDbInitialized()) {
@@ -31,7 +32,8 @@ function setupPage(req, res) {
res.render('setup', {
syncInProgress: syncInProgress,
assetPath: assetPath
assetPath: assetPath,
appPath: appPath
});
}