Skip to content

Commit

Permalink
update OpenAPI specs
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
  • Loading branch information
julien-nc committed Oct 4, 2023
1 parent 176c613 commit d4824eb
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions apps/oauth2/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,40 +121,50 @@
"name": "code",
"in": "query",
"description": "Code of the flow",
"required": true,
"schema": {
"type": "string"
"type": "string",
"nullable": true
}
},
{
"name": "refresh_token",
"in": "query",
"description": "Refresh token",
"required": true,
"schema": {
"type": "string"
"type": "string",
"nullable": true
}
},
{
"name": "client_id",
"in": "query",
"description": "Client ID",
"required": true,
"schema": {
"type": "string"
"type": "string",
"nullable": true
}
},
{
"name": "client_secret",
"in": "query",
"description": "Client secret",
"required": true,
"schema": {
"type": "string"
"type": "string",
"nullable": true
}
}
],
"responses": {
"500": {
"description": "",
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
}
},
"200": {
"description": "Token returned",
"content": {
Expand Down

0 comments on commit d4824eb

Please sign in to comment.