fix: jwt expiry not taken from configuration
This commit is contained in:
parent
f012766ec7
commit
7d3595fdcd
2 changed files with 4 additions and 5 deletions
|
|
@ -5,7 +5,6 @@ import (
|
|||
"log/slog"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"git.juancwu.dev/juancwu/budgit/internal/ctxkeys"
|
||||
"git.juancwu.dev/juancwu/budgit/internal/service"
|
||||
|
|
@ -64,7 +63,7 @@ func (h *authHandler) LoginWithPassword(w http.ResponseWriter, r *http.Request)
|
|||
return
|
||||
}
|
||||
|
||||
h.authService.SetJWTCookie(w, jwtToken, time.Now().Add(7*24*time.Hour))
|
||||
h.authService.SetJWTCookie(w, jwtToken)
|
||||
|
||||
// Check for pending invite
|
||||
inviteCookie, err := r.Cookie("pending_invite")
|
||||
|
|
@ -153,7 +152,7 @@ func (h *authHandler) VerifyMagicLink(w http.ResponseWriter, r *http.Request) {
|
|||
return
|
||||
}
|
||||
|
||||
h.authService.SetJWTCookie(w, jwtToken, time.Now().Add(7*24*time.Hour))
|
||||
h.authService.SetJWTCookie(w, jwtToken)
|
||||
|
||||
// Check for pending invite
|
||||
inviteCookie, err := r.Cookie("pending_invite")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue