server: Fix missing .js import for route-interface

This commit is contained in:
Elian Doran
2024-07-24 20:23:05 +03:00
parent 3067380338
commit 212d61c1d2
10 changed files with 10 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ import passwordEncryptionService from "./encryption/password_encryption.js";
import config from "./config.js";
import passwordService from "./encryption/password.js";
import type { NextFunction, Request, Response } from 'express';
import { AppRequest } from '../routes/route-interface';
import { AppRequest } from '../routes/route-interface.js';
const noAuthentication = config.General && config.General.noAuthentication === true;