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

@@ -6,19 +6,22 @@ const myScryptService = require('../services/my_scrypt');
const log = require('../services/log');
const passwordService = require("../services/password");
const assetPath = require("../services/asset_path");
const appPath = require("../services/app_path");
const ValidationError = require("../errors/validation_error");
function loginPage(req, res) {
res.render('login', {
failedAuth: false,
assetPath: assetPath
assetPath: assetPath,
appPath: appPath
});
}
function setPasswordPage(req, res) {
res.render('set_password', {
error: false,
assetPath: assetPath
assetPath: assetPath,
appPath: appPath
});
}