From d3feeb6d6a839ac9c44dbed7f4e0a6bfa2fad9ee Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 8 Oct 2024 13:29:22 +0200 Subject: [PATCH] Add TODO placeholder for future patch implementation In the machines.controller.ts file, a TODO comment was added to indicate where a future patch method will be implemented. This serves as a reminder for developers to address this area later. --- apps/backend/src/app/machines/machines.controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/backend/src/app/machines/machines.controller.ts b/apps/backend/src/app/machines/machines.controller.ts index 44f7fd7..13fce74 100644 --- a/apps/backend/src/app/machines/machines.controller.ts +++ b/apps/backend/src/app/machines/machines.controller.ts @@ -32,6 +32,8 @@ export class MachinesController { @Delete(":machineId") async deleteMachine(@Param("machineId") machineId: string) {} + //TODO Patch + @Get(":machineId/files") async getFilesForMachine( @Query("limit", new DefaultValuePipe(20), ParseIntPipe) limit: number,