-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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: 連合をホワイトリスト制にできるように #14643
Feat: 連合をホワイトリスト制にできるように #14643
Conversation
Thank you for sending us a great Pull Request! 👍 example: pnpm run build-misskey-js-with-types |
このPRによるapi.jsonの差分 差分はこちら--- base
+++ head
@@ -558,6 +558,15 @@
"string",
"null"
]
+ },
+ "federation": {
+ "type": "string"
+ },
+ "federationHosts": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
}
},
"required": [
@@ -667,7 +676,9 @@
"urlPreviewMaximumContentLength",
"urlPreviewRequireContentLength",
"urlPreviewUserAgent",
- "urlPreviewSummaryProxyUrl"
+ "urlPreviewSummaryProxyUrl",
+ "federation",
+ "federationHosts"
]
}
}
@@ -13925,6 +13936,20 @@
"string",
"null"
]
+ },
+ "federation": {
+ "type": "string",
+ "enum": [
+ "all",
+ "none",
+ "specified"
+ ]
+ },
+ "federationHosts": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
}
}
} |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #14643 +/- ##
===========================================
+ Coverage 39.65% 39.83% +0.17%
===========================================
Files 1544 1544
Lines 193513 193604 +91
Branches 2506 3620 +1114
===========================================
+ Hits 76731 77114 +383
+ Misses 116217 115927 -290
+ Partials 565 563 -2 ☔ View full report in Codecov by Sentry. |
マージするか |
This reverts commit f0d0cd2
What
Resolve #2318
Why
#2318
Additional info (optional)
Checklist