1
0
forked from PGL/Clyde

Implement an endpoint to get all the courses of an user

This commit is contained in:
2024-04-20 23:29:22 +02:00
parent 061f329020
commit 1e2efac5bc
5 changed files with 57 additions and 6 deletions

View File

@ -49,5 +49,7 @@ public class UserCurriculumService {
return toReturn;
}
public ArrayList<UserCurriculum> findByStudentAndActual(User u, boolean actual){
return userCurriculumRepository.findByUserAndActual(u, actual);
}
}