Clean code update 1 #1

Merged
nilzbu merged 8 commits from cq_1 into master 2025-07-13 16:42:28 +00:00
2 changed files with 3 additions and 6 deletions
Showing only changes of commit 2c7dd8c8f2 - Show all commits

View File

@@ -1,5 +1,8 @@
package de.nilzbu.mytimetracker.model;
import lombok.Getter;
@Getter
public enum DayStatus {
OFFICE("In office"),
REMOTE("Remote work"),
@@ -12,7 +15,4 @@ public enum DayStatus {
this.displayName = displayName;
}
public String getDisplayName() {
return displayName;
}
}

View File

@@ -12,10 +12,7 @@ public class SecurityConfig extends VaadinWebSecurity {
@Override
protected void configure(HttpSecurity http) throws Exception {
// Standard-Konfiguration von Vaadin-Security erweitern
super.configure(http);
// Login-View setzen
setLoginView(http, LoginView.class);
}