-
-
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: アンテナでセンシティブなチャンネルからのノートを除外できるように #15346
Open
sevenc-nanashi
wants to merge
27
commits into
misskey-dev:develop
Choose a base branch
from
sevenc-nanashi:feat/hide-sensitive-from-antenna
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+93
−1
Open
Changes from 22 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
66f23a2
feat(db): マイグレーションを追加
sevenc-nanashi 3deaf92
feat(backend): カラムの定義を追加
sevenc-nanashi bc8250b
wip
sevenc-nanashi 6216235
feat: フラグを設定出来るように
sevenc-nanashi 3ec48a2
feat: /notesエンドポイントを対応
sevenc-nanashi da6c80a
feat: websocketを対応
sevenc-nanashi eb9d1e9
test: テストを追加
sevenc-nanashi 7fff5b3
docs: CHANGELOGを更新
sevenc-nanashi 1e0a3b1
docs: CHANGELOGの追加場所を修正
sevenc-nanashi f98076e
chore: api.jsonを更新
sevenc-nanashi 799af23
Merge branch 'develop' into feat/hide-sensitive-from-antenna
sevenc-nanashi 8e95c9d
docs(CHANGELOG): General欄に移動
sevenc-nanashi 812c3a1
Merge branch 'develop' into feat/hide-sensitive-from-antenna
sevenc-nanashi 1a15156
Merge branch 'develop' into feat/hide-sensitive-from-antenna
sevenc-nanashi 3a71cc7
Merge branch 'develop' into feat/hide-sensitive-from-antenna
sevenc-nanashi 283bb82
Merge branch 'develop' into feat/hide-sensitive-from-antenna
sevenc-nanashi 369e98b
docs: フォーマットを揃える
sevenc-nanashi 493a5d7
chore: クエリを削除
sevenc-nanashi 46a13d0
Merge: upstream/develop -> feat/hide-sensitive-from-antenna
sevenc-nanashi 4bbd8d5
revert: 英訳を消す
sevenc-nanashi a6f1d44
chore: note.channelを追加するところを変える
sevenc-nanashi db4e53d
Merge branch 'develop' into feat/hide-sensitive-from-antenna
sevenc-nanashi 49553cb
docs: CHANGELOGを更新する
sevenc-nanashi f7649c0
Merge branch 'develop' into feat/hide-sensitive-from-antenna
sevenc-nanashi 5fb6631
Merge branch 'develop' into feat/hide-sensitive-from-antenna
sevenc-nanashi 327e7af
Merge branch 'develop' into feat/hide-sensitive-from-antenna
sevenc-nanashi c743a3a
docs(CHANGELOG): 2025.3.2に移動
sevenc-nanashi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
16 changes: 16 additions & 0 deletions
16
packages/backend/migration/1736230492103-addAntennaHideNotesInSensitiveChannel.js
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* SPDX-FileCopyrightText: syuilo and misskey-project | ||
* SPDX-License-Identifier: AGPL-3.0-only | ||
*/ | ||
|
||
export class AddAntennaHideNotesInSensitiveChannel1736230492103 { | ||
name = 'AddAntennaHideNotesInSensitiveChannel1736230492103' | ||
|
||
async up(queryRunner) { | ||
await queryRunner.query(`ALTER TABLE "antenna" ADD "hideNotesInSensitiveChannel" boolean NOT NULL DEFAULT false`); | ||
} | ||
|
||
async down(queryRunner) { | ||
await queryRunner.query(`ALTER TABLE "antenna" DROP COLUMN "hideNotesInSensitiveChannel"`); | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
これだけチャンネル作成が必要になってくるので上のeachとは別に書いています。