Add a TODO comment in groups.controller.ts

Inserted a TODO comment to indicate the need for a DTO in the newGroup method. This serves as a reminder for future development and enhances code readability and maintainability.
This commit is contained in:
Mathis H (Avnyr) 2024-10-08 13:38:21 +02:00
parent d171c72dcf
commit d69589c781
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -25,6 +25,7 @@ export class GroupsController {
@Query("search", new DefaultValuePipe("")) search: string, @Query("search", new DefaultValuePipe("")) search: string,
) {} ) {}
//TODO DTO
@Post("new") @Post("new")
async newGroup() {} async newGroup() {}