Skip to content

Commit

Permalink
Get more stats for course
Browse files Browse the repository at this point in the history
  • Loading branch information
dfuchss committed Nov 22, 2023
1 parent 7c95bbb commit e6bb73d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public MappingLoaderArtemisClient(ISubmissionsArtemisClient submissionClient, St

@Override
public List<Course> getCourses() throws ArtemisClientException {
Request request = new Request.Builder().url(this.path(COURSES_PATHPART)).get().build();
Request request = new Request.Builder().url(this.path(COURSES_PATHPART, "with-user-stats")).get().build();
Course[] coursesArray = this.call(this.client, request, Course[].class);
assert coursesArray != null;
for (Course course : coursesArray) {
Expand Down

0 comments on commit e6bb73d

Please sign in to comment.