fix: review comments

This commit is contained in:
Stavros
2026-01-24 16:16:26 +02:00
parent 71bc3966bc
commit cf1a613229
10 changed files with 124 additions and 117 deletions

View File

@@ -6,7 +6,7 @@ package repository
type OidcCode struct {
Sub string
Code string
CodeHash string
Scope string
RedirectURI string
ClientID string
@@ -14,11 +14,11 @@ type OidcCode struct {
}
type OidcToken struct {
Sub string
AccessToken string
Scope string
ClientID string
ExpiresAt int64
Sub string
AccessTokenHash string
Scope string
ClientID string
ExpiresAt int64
}
type OidcUserinfo struct {