Skip to content

Commit

Permalink
Deploying to gh-pages from @ 8c6380c 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaptoss committed Aug 23, 2024
1 parent 4d71802 commit efa6dce
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
14 changes: 10 additions & 4 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,16 @@
"401": {
"$ref": "#/components/responses/invalidAuth"
},
"403": {
"description": "Questions unavailable, try later",
"content": {
"application/vnd.api+json": {
"schema": {
"$ref": "#/components/schemas/Errors"
}
}
}
},
"404": {
"description": "There is no question in current day.",
"content": {
Expand Down Expand Up @@ -742,9 +752,6 @@
}
}
},
"400": {
"$ref": "#/components/responses/invalidParameter"
},
"401": {
"$ref": "#/components/responses/invalidAuth"
},
Expand Down Expand Up @@ -1897,7 +1904,6 @@
"type": "object",
"required": [
"title",
"deadline",
"options"
],
"properties": {
Expand Down
9 changes: 6 additions & 3 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,12 @@ paths:
$ref: '#/components/responses/invalidParameter'
'401':
$ref: '#/components/responses/invalidAuth'
'403':
description: 'Questions unavailable, try later'
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Errors'
'404':
description: There is no question in current day.
content:
Expand Down Expand Up @@ -498,8 +504,6 @@ paths:
properties:
data:
$ref: '#/components/schemas/DailyQuestionsStatus'
'400':
$ref: '#/components/responses/invalidParameter'
'401':
$ref: '#/components/responses/invalidAuth'
'404':
Expand Down Expand Up @@ -1276,7 +1280,6 @@ components:
type: object
required:
- title
- deadline
- options
properties:
title:
Expand Down

0 comments on commit efa6dce

Please sign in to comment.