From 4cc80edfbcd31713b2635545cbc9dc48e18f2a44 Mon Sep 17 00:00:00 2001 From: phoenix Date: Mon, 15 Dec 2025 21:44:06 -0500 Subject: [PATCH] tsk-15: Added User Id to Login --- tx0/token/token.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tx0/token/token.go b/tx0/token/token.go index f2be04e..b8270f3 100644 --- a/tx0/token/token.go +++ b/tx0/token/token.go @@ -12,6 +12,7 @@ type Claims struct { } type Login struct { + UserId uuid.UUID `json:"user_id"` AccessToken string `json:"access_token"` TokenType string `json:"token_type"` ExpiresIn int64 `json:"expires_in"`