From cc7a35ee9299750667a5e53542c285ca05634706 Mon Sep 17 00:00:00 2001 From: tsmethurst Date: Thu, 2 Sep 2021 12:22:09 +0200 Subject: token tests --- internal/gtsmodel/token.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/gtsmodel/token.go') 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 -- cgit v1.2.3