Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public ResponseEntity<ClientResponseDTO> createMapping(
"TeamParticipation not found for exercise " + exerciseId
+ " and team " + request.teamParticipationId()));

// 2. Resolve real Artemis student ID by name (frontend may send 0 as placeholder)
// 2. Resolve real Artemis student ID by name (client may send 0 as placeholder)
Long resolvedStudentId = request.studentId();
if (request.studentName() != null) {
List<Student> students = studentRepository.findAllByTeam(participation);
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/de/tum/cit/aet/core/security/SpaWebFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
public class SpaWebFilter extends OncePerRequestFilter {

/**
* Forwards the request to {@code /} if it does not match a backend path or a static resource.
* Backend paths ({@code /api}, {@code /actuator}, etc.) and paths containing a file extension
* Forwards the request to {@code /} if it does not match a server path or a static resource.
* Server paths ({@code /api}, {@code /actuator}, etc.) and paths containing a file extension
* are passed through to the next filter in the chain.
*/
@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>webapp</title>
<title>Harmonia</title>
</head>
<body>
<div id="root"></div>
Expand Down
35 changes: 35 additions & 0 deletions src/main/webapp/vite.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.