mirror of
https://github.com/zadam/trilium.git
synced 2025-11-07 22:05:44 +01:00
#98, new option "initialized" which indicates if setup has been finished
This commit is contained in:
@@ -1,7 +1,25 @@
|
||||
"use strict";
|
||||
|
||||
function setupPage(req, res) {
|
||||
res.render('setup', {});
|
||||
const sqlInit = require('../services/sql_init');
|
||||
const setupService = require('../services/setup');
|
||||
|
||||
async function setupPage(req, res) {
|
||||
if (await sqlInit.isDbInitialized()) {
|
||||
res.redirect('/');
|
||||
}
|
||||
|
||||
// we got here because DB is not completely initialized so if schema exists
|
||||
// it means we're in sync in progress state.
|
||||
const syncInProgress = await sqlInit.schemaExists();
|
||||
|
||||
if (syncInProgress) {
|
||||
// trigger sync if it's not already running
|
||||
setupService.triggerSync();
|
||||
}
|
||||
|
||||
res.render('setup', {
|
||||
syncInProgress: syncInProgress
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
|
||||
Reference in New Issue
Block a user