feat: アンテナでセンシティブなチャンネルからのノートを除外できるように (#15346)
* feat(db): マイグレーションを追加 * feat(backend): カラムの定義を追加 * wip * feat: フラグを設定出来るように * feat: /notesエンドポイントを対応 * feat: websocketを対応 * test: テストを追加 * docs: CHANGELOGを更新 * docs: CHANGELOGの追加場所を修正 * chore: api.jsonを更新 * docs(CHANGELOG): General欄に移動 * docs: フォーマットを揃える * chore: クエリを削除 * revert: 英訳を消す * chore: note.channelを追加するところを変える * docs: CHANGELOGを更新する * docs(CHANGELOG): 2025.3.2に移動 * chore: changelogを下に移動 * ci: CI再実行用の空コミット --------- Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
This commit is contained in:
parent
0bf49818c4
commit
98eadd7093
15 changed files with 93 additions and 1 deletions
|
|
@ -4898,6 +4898,8 @@ export type components = {
|
|||
hasUnreadNote: boolean;
|
||||
/** @default false */
|
||||
notify: boolean;
|
||||
/** @default false */
|
||||
hideNotesInSensitiveChannel: boolean;
|
||||
};
|
||||
Clip: {
|
||||
/**
|
||||
|
|
@ -11305,6 +11307,7 @@ export type operations = {
|
|||
excludeBots?: boolean;
|
||||
withReplies: boolean;
|
||||
withFile: boolean;
|
||||
hideNotesInSensitiveChannel?: boolean;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
@ -11586,6 +11589,7 @@ export type operations = {
|
|||
excludeBots?: boolean;
|
||||
withReplies?: boolean;
|
||||
withFile?: boolean;
|
||||
hideNotesInSensitiveChannel?: boolean;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue