This commit is contained in:
Bastian Wagner
2025-12-19 11:18:53 +01:00
commit 5a08e2319f
48 changed files with 23098 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { Body, Controller, Post } from "@nestjs/common";
import { CreateGroupDto } from "../dto/create-group.dto";
import { GroupsService } from "../application/groups.service";
@Controller({path: 'groups'})
export class GroupsController {
constructor(private groupsService: GroupsService) {}
@Post()
createGroup(@Body() dto: CreateGroupDto) {
return this.groupsService.create(dto);
}
}