mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
server-ts: Convert routes/setup
This commit is contained in:
parent
2e906af77d
commit
a18b054dbb
@ -1,12 +1,13 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
const sqlInit = require('../services/sql_init');
|
import sqlInit = require('../services/sql_init');
|
||||||
const setupService = require('../services/setup');
|
import setupService = require('../services/setup');
|
||||||
const utils = require('../services/utils');
|
import utils = require('../services/utils');
|
||||||
const assetPath = require('../services/asset_path');
|
import assetPath = require('../services/asset_path');
|
||||||
const appPath = require('../services/app_path');
|
import appPath = require('../services/app_path');
|
||||||
|
import { Request, Response } from 'express';
|
||||||
|
|
||||||
function setupPage(req, res) {
|
function setupPage(req: Request, res: Response) {
|
||||||
if (sqlInit.isDbInitialized()) {
|
if (sqlInit.isDbInitialized()) {
|
||||||
if (utils.isElectron()) {
|
if (utils.isElectron()) {
|
||||||
const windowService = require('../services/window');
|
const windowService = require('../services/window');
|
||||||
@ -37,6 +38,6 @@ function setupPage(req, res) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
export = {
|
||||||
setupPage
|
setupPage
|
||||||
};
|
};
|
Loading…
x
Reference in New Issue
Block a user