mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
chore: add claims to oauth link in db for debug (#10827)
* chore: add claims to oauth link in db for debug
This commit is contained in:
@@ -27,10 +27,11 @@ INSERT INTO
|
||||
oauth_access_token_key_id,
|
||||
oauth_refresh_token,
|
||||
oauth_refresh_token_key_id,
|
||||
oauth_expiry
|
||||
oauth_expiry,
|
||||
debug_context
|
||||
)
|
||||
VALUES
|
||||
( $1, $2, $3, $4, $5, $6, $7, $8 ) RETURNING *;
|
||||
( $1, $2, $3, $4, $5, $6, $7, $8, $9 ) RETURNING *;
|
||||
|
||||
-- name: UpdateUserLinkedID :one
|
||||
UPDATE
|
||||
@@ -48,6 +49,7 @@ SET
|
||||
oauth_access_token_key_id = $2,
|
||||
oauth_refresh_token = $3,
|
||||
oauth_refresh_token_key_id = $4,
|
||||
oauth_expiry = $5
|
||||
oauth_expiry = $5,
|
||||
debug_context = $6
|
||||
WHERE
|
||||
user_id = $6 AND login_type = $7 RETURNING *;
|
||||
user_id = $7 AND login_type = $8 RETURNING *;
|
||||
|
||||
Reference in New Issue
Block a user