diff --git a/core/src/node/api/restful/v1.ts b/core/src/node/api/restful/v1.ts index 5eb8f5067..9d57de841 100644 --- a/core/src/node/api/restful/v1.ts +++ b/core/src/node/api/restful/v1.ts @@ -1,16 +1,16 @@ import { HttpServer } from '../HttpServer' import { commonRouter } from './common' -import { downloadRouter } from './app/download' -import { handleRequests } from './app/handlers' export const v1Router = async (app: HttpServer) => { // MARK: Public API Routes app.register(commonRouter) // MARK: Internal Application Routes - handleRequests(app) + // DEPRECATED: Vulnerability possible issues + // handleRequests(app) // Expanded route for tracking download progress // TODO: Replace by Observer Wrapper (ZeroMQ / Vanilla Websocket) - app.register(downloadRouter) + // DEPRECATED: Jan FE Docker deploy is deprecated + // app.register(downloadRouter) }