server-ts: Fix references to js files for converted files

This commit is contained in:
Elian Doran
2024-02-17 11:54:55 +02:00
parent 4df599fec2
commit 45a6c9558f
58 changed files with 83 additions and 80 deletions

View File

@@ -4,9 +4,9 @@ const etapiTokenService = require('./etapi_tokens.js');
const log = require('./log');
const sqlInit = require('./sql_init.js');
const utils = require('./utils');
const passwordEncryptionService = require('./encryption/password_encryption.js');
const passwordEncryptionService = require('./encryption/password_encryption');
const config = require('./config');
const passwordService = require('./encryption/password.js');
const passwordService = require('./encryption/password');
const noAuthentication = config.General && config.General.noAuthentication === true;