Revert "fix: 非ログイン状態でお知らせの読み込みができない問題の修正 (#131)"

This reverts commit 233d967b82.
This commit is contained in:
まっちゃとーにゅ 2023-08-01 18:59:01 +09:00
parent c378781e0b
commit eeef3965b7
No known key found for this signature in database
GPG Key ID: 6AFBBF529601C1DB
1 changed files with 0 additions and 4 deletions

View File

@ -99,10 +99,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
query.orWhere('announcement."userId" = :userId', { userId: me.id }); query.orWhere('announcement."userId" = :userId', { userId: me.id });
} }
} else { } else {
query.select([
'announcement.*',
'FALSE as "isRead"',
]);
query.where('announcement."userId" IS NULL'); query.where('announcement."userId" IS NULL');
} }