mirror of
https://github.com/zadam/trilium.git
synced 2025-11-07 22:05:44 +01:00
fix missing doc resources for launchers, closes #3455
This commit is contained in:
@@ -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
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user