diff options
| author | anatawa12 <anatawa12@icloud.com> | 2024-05-20 18:08:20 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-20 18:08:20 +0900 |
| commit | f6df94070b0fc1ca862d560b17488bd718c2ec85 (patch) | |
| tree | 77cafdee3d7134951f9c23aeb9580eac7db11c42 /packages/frontend/src/pages | |
| parent | fix notification limit with exclude/include types (#13836) (diff) | |
| download | misskey-f6df94070b0fc1ca862d560b17488bd718c2ec85.tar.gz misskey-f6df94070b0fc1ca862d560b17488bd718c2ec85.tar.bz2 misskey-f6df94070b0fc1ca862d560b17488bd718c2ec85.zip | |
Exclude channel notes from featured polls (#13838)
* feat(backend): add `channelId` to `MiPoll` as a Denormalized field
* feat(backend): option to exclude polls in channels
* chore: exclude channel notes from featured polls
* docs(changelog): みつけるのアンケート欄にてチャンネルのアンケートが含まれてしまう問題を修正
* fix: missing license header
Diffstat (limited to 'packages/frontend/src/pages')
| -rw-r--r-- | packages/frontend/src/pages/explore.featured.vue | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/frontend/src/pages/explore.featured.vue b/packages/frontend/src/pages/explore.featured.vue index b5c8e70166..cfdb235d3a 100644 --- a/packages/frontend/src/pages/explore.featured.vue +++ b/packages/frontend/src/pages/explore.featured.vue @@ -29,6 +29,9 @@ const paginationForPolls = { endpoint: 'notes/polls/recommendation' as const, limit: 10, offsetMode: true, + params: { + excludeChannels: true, + }, }; const tab = ref('notes'); |