forgot the return statement

This commit is contained in:
Bartha Maxime 2024-03-17 02:46:33 +01:00
parent a70b05a0ef
commit f2507ddcdd

View File

@ -97,5 +97,6 @@ public class CourseController {
toReturn.put("credits",course.getCredits());
toReturn.put("title", course.getTitle());
toReturn.put("owner", authServ.userWithoutPassword(course.getOwner()));
return toReturn;
}
}