feat: modify fields for updation

This commit is contained in:
2025-05-31 23:19:30 +02:00
parent 45bce711f2
commit bce775f692
2 changed files with 15 additions and 11 deletions

View File

@ -163,26 +163,29 @@ const updateApiService = `-- name: UpdateApiService :one
UPDATE api_services
SET
name = $2,
redirect_uris = $3,
scopes = $4,
grant_types = $5,
description = $3,
redirect_uris = $4,
scopes = $5,
grant_types = $6,
updated_at = NOW()
WHERE client_id = $1
RETURNING id, client_id, client_secret, name, redirect_uris, scopes, grant_types, created_at, updated_at, is_active, description
`
type UpdateApiServiceParams struct {
ClientID string `json:"client_id"`
Name string `json:"name"`
RedirectUris []string `json:"redirect_uris"`
Scopes []string `json:"scopes"`
GrantTypes []string `json:"grant_types"`
ClientID string `json:"client_id"`
Name string `json:"name"`
Description pgtype.Text `json:"description"`
RedirectUris []string `json:"redirect_uris"`
Scopes []string `json:"scopes"`
GrantTypes []string `json:"grant_types"`
}
func (q *Queries) UpdateApiService(ctx context.Context, arg UpdateApiServiceParams) (ApiService, error) {
row := q.db.QueryRow(ctx, updateApiService,
arg.ClientID,
arg.Name,
arg.Description,
arg.RedirectUris,
arg.Scopes,
arg.GrantTypes,

View File

@ -24,9 +24,10 @@ ORDER BY created_at DESC;
UPDATE api_services
SET
name = $2,
redirect_uris = $3,
scopes = $4,
grant_types = $5,
description = $3,
redirect_uris = $4,
scopes = $5,
grant_types = $6,
updated_at = NOW()
WHERE client_id = $1
RETURNING *;