From 36adbf6840a07a3ddd2de5a1788ff47301e35065 Mon Sep 17 00:00:00 2001 From: Stephan Krusche Date: Mon, 2 Dec 2024 22:58:55 +0100 Subject: [PATCH] Development: Fix a server style issue --- .../cit/aet/artemis/atlas/web/CourseCompetencyResource.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/de/tum/cit/aet/artemis/atlas/web/CourseCompetencyResource.java b/src/main/java/de/tum/cit/aet/artemis/atlas/web/CourseCompetencyResource.java index 81183515dc38..469ba555c9b3 100644 --- a/src/main/java/de/tum/cit/aet/artemis/atlas/web/CourseCompetencyResource.java +++ b/src/main/java/de/tum/cit/aet/artemis/atlas/web/CourseCompetencyResource.java @@ -162,7 +162,8 @@ public ResponseEntity getCourseCompetency(@PathVariable long c /** * GET courses/:courseId/course-competencies : gets all the course competencies of a course * - * @param courseId the id of the course for which the competencies should be fetched + * @param courseId The id of the course for which the competencies should be fetched + * @param filter Whether to filter out competencies that are not linked to any learning objects * @return the ResponseEntity with status 200 (OK) and with body the found competencies */ @GetMapping("courses/{courseId}/course-competencies")