Skip to content

Commit

Permalink
fixed missing params
Browse files Browse the repository at this point in the history
  • Loading branch information
ghorkov32 committed Sep 19, 2024
1 parent 0cad874 commit 615ccc0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7694,6 +7694,13 @@ paths:
operationId: modify-user
tags:
- Users
parameters:
- name: user_id
in: path
description: The ID of the user.
required: true
schema:
type: string
requestBody:
description: The new user role to modify. This must be one of `owner` or `member`.
required: true
Expand Down Expand Up @@ -7924,6 +7931,13 @@ paths:
operationId: modify-project
tags:
- Projects
parameters:
- name: project_id
in: path
description: The ID of the project.
required: true
schema:
type: string
requestBody:
description: The project update request payload.
required: true
Expand Down Expand Up @@ -8190,6 +8204,19 @@ paths:
operationId: modify-project-user
tags:
- Projects
parameters:
- name: project_id
in: path
description: The ID of the project.
required: true
schema:
type: string
- name: user_id
in: path
description: The ID of the user.
required: true
schema:
type: string
requestBody:
description: The project user update request payload.
required: true
Expand Down

0 comments on commit 615ccc0

Please sign in to comment.