-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
fix(backend): correct response schema of chat endpoints #15904
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🙏 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #15904 +/- ##
===========================================
+ Coverage 42.45% 44.44% +1.98%
===========================================
Files 1695 1699 +4
Lines 172023 178232 +6209
Branches 4229 4265 +36
===========================================
+ Hits 73040 79218 +6178
+ Misses 98522 98520 -2
- Partials 461 494 +33 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
このPRによるapi.jsonの差分 差分はこちら--- base
+++ head
@@ -32067,13 +32067,8 @@
}
},
"responses": {
- "200": {
- "description": "OK (with results)",
- "content": {
- "application/json": {
- "schema": {}
- }
- }
+ "204": {
+ "description": "OK (without any results)"
},
"400": {
"description": "Client error",
@@ -32233,13 +32228,8 @@
}
},
"responses": {
- "200": {
- "description": "OK (with results)",
- "content": {
- "application/json": {
- "schema": {}
- }
- }
+ "204": {
+ "description": "OK (without any results)"
},
"400": {
"description": "Client error",
@@ -32935,13 +32925,8 @@
}
},
"responses": {
- "200": {
- "description": "OK (with results)",
- "content": {
- "application/json": {
- "schema": {}
- }
- }
+ "204": {
+ "description": "OK (without any results)"
},
"400": {
"description": "Client error",
@@ -33460,13 +33445,8 @@
}
},
"responses": {
- "200": {
- "description": "OK (with results)",
- "content": {
- "application/json": {
- "schema": {}
- }
- }
+ "204": {
+ "description": "OK (without any results)"
},
"400": {
"description": "Client error",
@@ -33813,13 +33793,8 @@
}
},
"responses": {
- "200": {
- "description": "OK (with results)",
- "content": {
- "application/json": {
- "schema": {}
- }
- }
+ "204": {
+ "description": "OK (without any results)"
},
"400": {
"description": "Client error",
@@ -34323,13 +34298,8 @@
}
},
"responses": {
- "200": {
- "description": "OK (with results)",
- "content": {
- "application/json": {
- "schema": {}
- }
- }
+ "204": {
+ "description": "OK (without any results)"
},
"400": {
"description": "Client error",
@@ -34651,13 +34621,8 @@
}
},
"responses": {
- "200": {
- "description": "OK (with results)",
- "content": {
- "application/json": {
- "schema": {}
- }
- }
+ "204": {
+ "description": "OK (without any results)"
},
"400": {
"description": "Client error",
@@ -34999,13 +34964,8 @@
}
},
"responses": {
- "200": {
- "description": "OK (with results)",
- "content": {
- "application/json": {
- "schema": {}
- }
- }
+ "204": {
+ "description": "OK (without any results)"
},
"400": {
"description": "Client error", |
ruruke
pushed a commit
to ruruke/rukey
that referenced
this pull request
May 1, 2025
DA-TENSHI
pushed a commit
to SHINANOSKEY-Projekt/misskey
that referenced
this pull request
May 2, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What
チャット関連の API エンドポイントで 204 を返すものが、OpenAPI ドキュメントでは 200 を返すものと書かれてしまっている問題を修正します。
Why
API ドキュメント改善
Additional info (optional)
Checklist