From 1c091dc924aa14c86b70665447bedfaedcb21820 Mon Sep 17 00:00:00 2001 From: Tim Wundenberg Date: Wed, 24 Dec 2025 08:13:05 +0100 Subject: [PATCH] wip --- internal/authentication/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/authentication/handler.go b/internal/authentication/handler.go index f4dde7e..a3083f2 100644 --- a/internal/authentication/handler.go +++ b/internal/authentication/handler.go @@ -79,7 +79,7 @@ func (handler HandlerImpl) handleSignIn() http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { core.UpdateSpan(r) - user, err := utils.WaitMinimumTime(securityWaitDuration, func() (*types.User, error) { + user, err := utils.WaitMinimumTime(securityWaitDuration, func() (*User, error) { session := core.GetSession(r) email := r.FormValue("email") password := r.FormValue("password")