Merge remote-tracking branch 'origin/dev/main' into dev/main

This commit is contained in:
2025-05-01 19:44:09 +02:00
2 changed files with 3 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ import (
"arbeitszeitmessung/models"
"encoding/json"
"fmt"
"log"
"net/http"
)
@@ -31,6 +32,7 @@ func autoLogout(w http.ResponseWriter) {
fmt.Printf("Error logging out user %v\n", err)
} else {
logged_out_users = append(logged_out_users, user)
log.Printf("Automaticaly logged out user %s, %s ", user.Name, user.Vorname)
}
}