Skip to content
Snippets Groups Projects
Commit c1b36117 authored by Ruben Backx's avatar Ruben Backx :coffee:
Browse files

Add group name to lab export

parent e551a947
Branches
Tags
1 merge request!837Patch for software project
......@@ -122,7 +122,8 @@ public abstract class RequestViewDTO<R extends Request<?>> extends View<R>
"Room",
"Building",
"Requester",
"Student Group Members",
"Group name",
"Group members",
"Session name",
"Session start"
};
......@@ -137,6 +138,7 @@ public abstract class RequestViewDTO<R extends Request<?>> extends View<R>
(room != null) ? room.getName() : "",
(room != null) ? room.getBuilding().getName() : "",
requester.getDisplayName(),
(studentGroup != null) ? studentGroup.getName() : "",
(studentGroup != null) ? String.join(", ", studentGroup.getMemberUsernames()) : "",
session.getName(),
session.getStart().format(DateTimeFormatter.ISO_DATE_TIME)
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment