fix(backend): アーカイブしたお知らせがコントロールパネルに表示される問題を修正
This commit is contained in:
parent
56401ed91c
commit
bdbb3266ae
2 changed files with 2 additions and 0 deletions
|
@ -63,6 +63,7 @@
|
||||||
- Fix: 11以上されているリアクションにおいてツールチップで示されるリアクション数が本来よりも1多い問題を修正 #12174
|
- Fix: 11以上されているリアクションにおいてツールチップで示されるリアクション数が本来よりも1多い問題を修正 #12174
|
||||||
- Fix: サイレンス状態で公開範囲のパブリックを選択できてしまう問題を修正 #12224
|
- Fix: サイレンス状態で公開範囲のパブリックを選択できてしまう問題を修正 #12224
|
||||||
- Fix: In deck layout, replies option is not saved after refresh
|
- Fix: In deck layout, replies option is not saved after refresh
|
||||||
|
- Fix: アーカイブしたお知らせがコントロールパネルに表示される問題を修正
|
||||||
- Note: アップデート後、サウンドに関する設定が初期化されます
|
- Note: アップデート後、サウンドに関する設定が初期化されます
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
|
|
|
@ -86,6 +86,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
) {
|
) {
|
||||||
super(meta, paramDef, async (ps, me) => {
|
super(meta, paramDef, async (ps, me) => {
|
||||||
const query = this.queryService.makePaginationQuery(this.announcementsRepository.createQueryBuilder('announcement'), ps.sinceId, ps.untilId);
|
const query = this.queryService.makePaginationQuery(this.announcementsRepository.createQueryBuilder('announcement'), ps.sinceId, ps.untilId);
|
||||||
|
query.andWhere('announcement.isActive = true');
|
||||||
if (ps.userId) {
|
if (ps.userId) {
|
||||||
query.andWhere('announcement.userId = :userId', { userId: ps.userId });
|
query.andWhere('announcement.userId = :userId', { userId: ps.userId });
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue