-
Notifications
You must be signed in to change notification settings - Fork 6
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
Feat: indexableに対応 #449
Feat: indexableに対応 #449
Conversation
あーーー |
もうちょっと作業する |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #449 +/- ##
============================================
+ Coverage 20.23% 40.41% +20.17%
============================================
Files 787 1668 +881
Lines 117347 225103 +107756
Branches 1088 3833 +2745
============================================
+ Hits 23744 90970 +67226
- Misses 93015 133488 +40473
- Partials 588 645 +57 ☔ View full report in Codecov by Sentry. |
이 PR에 의한 api.json 차이 차이점은 여기에서 볼 수 있음--- base
+++ head
@@ -13122,6 +13122,31 @@
"bearerAuth": []
}
],
+ "requestBody": {
+ "required": true,
+ "content": {
+ "application/json": {
+ "schema": {
+ "type": "object",
+ "properties": {
+ "index": {
+ "type": "string",
+ "enum": [
+ "notes",
+ "reaction",
+ "pollVote",
+ "clipNotes",
+ "Favorites"
+ ]
+ }
+ },
+ "required": [
+ "index"
+ ]
+ }
+ }
+ }
+ },
"responses": {
"204": {
"description": "OK (without any results)"
@@ -50014,6 +50039,9 @@
"isExplorable": {
"type": "boolean"
},
+ "isIndexable": {
+ "type": "boolean"
+ },
"hideOnlineStatus": {
"type": "boolean"
}, |
index/unindexをジョブキューに乗せたい |
このPRでやると複雑化するし別PRに分割してほしい |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
通常検索のindexableのテスト無い? |
What
検索許可の明示
toot:indexableに対応
検索仕様はmastodon準拠
Why
Resolve #347
Additional info (optional)
つかれた
アカウント削除されたとかのunindex以外確認済み
Checklist