misskey
misskey copied to clipboard
enhance: 人気のPlayを10件以上表示できるように
※https://github.com/misskey-dev/misskey/pull/14439 に含まれるMkPaginationのfixが必要です
What
Playの「人気」タブに10件以上表示できるようになります。
Why
fix: https://github.com/misskey-dev/misskey/issues/14399
Additional info (optional)
テストを作成して確認
Checklist
- [x] Read the contribution guide
- [x] Test working in a local environment
- [ ] (If needed) Add story of storybook
- [x] (If needed) Update CHANGELOG.md
- [x] (If possible) Add tests
Codecov Report
Attention: Patch coverage is 60.63830% with 37 lines in your changes missing coverage. Please review.
Project coverage is 41.29%. Comparing base (
8869846) to head (a528aa6). Report is 2 commits behind head on develop.
Additional details and impacted files
@@ Coverage Diff @@
## develop #14443 +/- ##
===========================================
+ Coverage 39.57% 41.29% +1.72%
===========================================
Files 1548 1553 +5
Lines 194523 200329 +5806
Branches 3600 3640 +40
===========================================
+ Hits 76982 82735 +5753
- Misses 116973 116993 +20
- Partials 568 601 +33
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
このPRによるapi.jsonの差分
差分はこちら
--- base
+++ head
@@ -63665,6 +63665,29 @@
"tags": [
"flash"
],
+ "requestBody": {
+ "required": true,
+ "content": {
+ "application/json": {
+ "schema": {
+ "type": "object",
+ "properties": {
+ "offset": {
+ "type": "integer",
+ "minimum": 0,
+ "default": 0
+ },
+ "limit": {
+ "type": "integer",
+ "minimum": 1,
+ "maximum": 100,
+ "default": 10
+ }
+ }
+ }
+ }
+ }
+ },
"responses": {
"200": {
"description": "OK (with results)",
MkPaginationがマージされての出open
👍🏿