diff --git a/.gitignore b/.gitignore index 4b56acf..46b3a9b 100644 --- a/.gitignore +++ b/.gitignore @@ -54,3 +54,6 @@ pids # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +reports/* +reports/sonar-report.xml \ No newline at end of file diff --git a/src/content/content.controller.ts b/src/content/content.controller.ts index f0829d9..e11e28d 100644 --- a/src/content/content.controller.ts +++ b/src/content/content.controller.ts @@ -59,7 +59,7 @@ export class ContentController { return this.contentService.deleteContent(id); } - @Patch('update-content-order') + @Patch('order/update-order') async updateTrailOrder(@Body() contentsDto: UpdateContentsOrderDto) { this.logger.log( `Updating trail order for the list: ${JSON.stringify(contentsDto.contents)}`,