summaryrefslogtreecommitdiff
path: root/internal/gtsmodel/token.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/gtsmodel/token.go')
-rw-r--r--internal/gtsmodel/token.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/gtsmodel/token.go b/internal/gtsmodel/token.go
index 65728ac60..4188ea9eb 100644
--- a/internal/gtsmodel/token.go
+++ b/internal/gtsmodel/token.go
@@ -27,8 +27,8 @@ type Token struct {
UpdatedAt time.Time `validate:"-" bun:"type:timestamp,nullzero,notnull,default:current_timestamp"` // when was item last updated
ClientID string `validate:"required,ulid" bun:"type:CHAR(26),nullzero,notnull"` // ID of the client who owns this token
UserID string `validate:"required,ulid" bun:"type:CHAR(26),nullzero,notnull"` // ID of the user who owns this token
- RedirectURI string `validate:"required,url" bun:",nullzero,notnull"` // Oauth redirect URI for this token
- Scope string `validate:"omitempty,url" bun:",nullzero,notnull,default:'read'"` // Oauth scope
+ RedirectURI string `validate:"required,uri" bun:",nullzero,notnull"` // Oauth redirect URI for this token
+ Scope string `validate:"omitempty" bun:",nullzero,notnull,default:'read'"` // Oauth scope
Code string `validate:"-" bun:",pk,nullzero,notnull,default:''"` // Code, if present
CodeChallenge string `validate:"-" bun:",nullzero"` // Code challenge, if code present
CodeChallengeMethod string `validate:"-" bun:",nullzero"` // Code challenge method, if code present