fix(frontend): wrong usage, tooltips, ...
This commit is contained in:
parent
4d9567db9e
commit
3db5ec25c2
2 changed files with 59 additions and 43 deletions
|
|
@ -317,8 +317,13 @@ func (h *Handler) RequestCodexToken(c *gin.Context) {
|
|||
FileName: fileName,
|
||||
Storage: tokenStorage,
|
||||
Metadata: map[string]any{
|
||||
"email": tokenStorage.Email,
|
||||
"account_id": tokenStorage.AccountID,
|
||||
"email": tokenStorage.Email,
|
||||
"account_id": tokenStorage.AccountID,
|
||||
"access_token": tokenStorage.AccessToken,
|
||||
"refresh_token": tokenStorage.RefreshToken,
|
||||
"id_token": tokenStorage.IDToken,
|
||||
"expired": tokenStorage.Expire,
|
||||
"last_refresh": tokenStorage.LastRefresh,
|
||||
},
|
||||
}
|
||||
if errGuard := guardOAuthSessionPendingForSave(state, "codex"); errGuard != nil {
|
||||
|
|
|
|||
Loading…
Reference in a new issue