diff options
author | 2021-09-02 12:22:09 +0200 | |
---|---|---|
committer | 2021-09-02 12:22:09 +0200 | |
commit | cc7a35ee9299750667a5e53542c285ca05634706 (patch) | |
tree | 4e4405ed4ef7dbb264b7d175a79ea16d1f1c8f29 /internal/gtsmodel/token.go | |
parent | client_test (diff) | |
download | gotosocial-cc7a35ee9299750667a5e53542c285ca05634706.tar.xz |
token tests
Diffstat (limited to 'internal/gtsmodel/token.go')
-rw-r--r-- | internal/gtsmodel/token.go | 4 |
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 |