refactor: remove useless session struct abstraction

This commit is contained in:
Stavros
2026-01-09 22:43:30 +02:00
parent 98c0d7be24
commit 467c580ec4
5 changed files with 16 additions and 26 deletions

View File

@@ -140,7 +140,7 @@ func TestProxyHandler(t *testing.T) {
// Test logged in user
c := gin.CreateTestContextOnly(recorder, router)
err := authService.CreateSessionCookie(c, &config.SessionCookie{
err := authService.CreateSessionCookie(c, &repository.Session{
Username: "testuser",
Name: "testuser",
Email: "testuser@example.com",