Skip to content

Commit fc0ff0a

Browse files
General: Small enhancements (#209)
* replace back- and frontend * Add Harmonia icon SVG file * Update title
1 parent 0be8692 commit fc0ff0a

File tree

4 files changed

+39
-4
lines changed

4 files changed

+39
-4
lines changed

src/main/java/de/tum/cit/aet/analysis/web/EmailMappingResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public ResponseEntity<ClientResponseDTO> createMapping(
8585
"TeamParticipation not found for exercise " + exerciseId
8686
+ " and team " + request.teamParticipationId()));
8787

88-
// 2. Resolve real Artemis student ID by name (frontend may send 0 as placeholder)
88+
// 2. Resolve real Artemis student ID by name (client may send 0 as placeholder)
8989
Long resolvedStudentId = request.studentId();
9090
if (request.studentName() != null) {
9191
List<Student> students = studentRepository.findAllByTeam(participation);

src/main/java/de/tum/cit/aet/core/security/SpaWebFilter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
public class SpaWebFilter extends OncePerRequestFilter {
1616

1717
/**
18-
* Forwards the request to {@code /} if it does not match a backend path or a static resource.
19-
* Backend paths ({@code /api}, {@code /actuator}, etc.) and paths containing a file extension
18+
* Forwards the request to {@code /} if it does not match a server path or a static resource.
19+
* Server paths ({@code /api}, {@code /actuator}, etc.) and paths containing a file extension
2020
* are passed through to the next filter in the chain.
2121
*/
2222
@Override

src/main/webapp/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>webapp</title>
7+
<title>Harmonia</title>
88
</head>
99
<body>
1010
<div id="root"></div>

src/main/webapp/vite.svg

Lines changed: 35 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)