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.
This commit is contained in:
Mathis H (Avnyr) 2024-10-08 13:29:22 +02:00
parent fd1742e9dc
commit d3feeb6d6a
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -32,6 +32,8 @@ export class MachinesController {
@Delete(":machineId") @Delete(":machineId")
async deleteMachine(@Param("machineId") machineId: string) {} async deleteMachine(@Param("machineId") machineId: string) {}
//TODO Patch
@Get(":machineId/files") @Get(":machineId/files")
async getFilesForMachine( async getFilesForMachine(
@Query("limit", new DefaultValuePipe(20), ParseIntPipe) limit: number, @Query("limit", new DefaultValuePipe(20), ParseIntPipe) limit: number,