Skip to content
Snippets Groups Projects
Commit d9000b4d authored by Hugo SUBTIL's avatar Hugo SUBTIL
Browse files

fix: typo in structure.controller

parent 42b760bc
Branches
Tags
No related merge requests found
......@@ -8,8 +8,8 @@ export class StructuresController {
constructor(private readonly structureService: StructuresService) {}
@Post()
async create(@Body() createCatDto: CreateStructureDto) {
await this.structureService.create(createCatDto);
async create(@Body() createStructureDto: CreateStructureDto) {
await this.structureService.create(createStructureDto);
}
@Get()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment