-
Notifications
You must be signed in to change notification settings - Fork 1
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
ローカルユーザーが誰もフォローしていないリモートユーザーによるノートのブロックの改善 #206
Conversation
|
||
<MkSwitch v-model="nirilaBlockMentionsFromUnfamiliarRemoteUsers"> | ||
<template #label>未知のリモートユーザからの通知を生成するノートをブロックする</template> | ||
</MkSwitch> | ||
|
||
<MkTextarea v-model="hiddenTags"> | ||
<template #label>未知のリモートユーザからの通知を許可するローカルユーザのid</template> | ||
<template #caption>9grmcrkrslのようなユーザのidであって@adminのようなユーザ名ではないことに気をつけてください。</template> | ||
</MkTextarea> |
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.
どちらの設定もコンパネからいじれます
このPRによるapi.jsonの差分 差分はこちら--- base
+++ head
@@ -743,6 +743,15 @@
"string",
"null"
]
+ },
+ "nirilaBlockMentionsFromUnfamiliarRemoteUsers": {
+ "type": "boolean"
+ },
+ "nirilaAllowedUnfamiliarRemoteUserIds": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
}
},
"required": [
@@ -850,7 +859,9 @@
"urlPreviewMaximumContentLength",
"urlPreviewRequireContentLength",
"urlPreviewUserAgent",
- "urlPreviewSummaryProxyUrl"
+ "urlPreviewSummaryProxyUrl",
+ "nirilaBlockMentionsFromUnfamiliarRemoteUsers",
+ "nirilaAllowedUnfamiliarRemoteUserIds"
]
}
}
@@ -13353,6 +13364,15 @@
"string",
"null"
]
+ },
+ "nirilaBlockMentionsFromUnfamiliarRemoteUsers": {
+ "type": "boolean"
+ },
+ "nirilaAllowedUnfamiliarRemoteUserIds": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ }
}
}
} |
lintは後でやります |
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.
流れてきたノートの通知対象ユーザーの中に、1人でも通知を許可するユーザーが居たら、そのノートは(対象者全員に)通知されるって感じであってます?
雰囲気的には大体良さそうですかね~
No 全員が許可されてないとだめです。(じゃないとスパムの抜け道になるので) |
early returnしててそういうロジックになってないような気が…? |
入ってないときにreturn faldeしたつもりになってた |
Co-authored-by: Sayamame-beans <[email protected]>
他はなんとなく良さそう |
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.
ok
What
Fixes some portion of #146
Why
Additional info (optional)
Checklist