From d69589c78130670f6e0d61a93e25975c25f0a704 Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 8 Oct 2024 13:38:21 +0200 Subject: [PATCH] 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. --- apps/backend/src/app/groups/groups.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/backend/src/app/groups/groups.controller.ts b/apps/backend/src/app/groups/groups.controller.ts index 3cf5110..f63ac32 100644 --- a/apps/backend/src/app/groups/groups.controller.ts +++ b/apps/backend/src/app/groups/groups.controller.ts @@ -25,6 +25,7 @@ export class GroupsController { @Query("search", new DefaultValuePipe("")) search: string, ) {} + //TODO DTO @Post("new") async newGroup() {}