This commit is contained in:
syuilo 2019-04-14 11:56:37 +09:00
parent 42248a306a
commit c267baafdc
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -35,6 +35,7 @@ export default define(meta, async (ps, user) => {
const day = 1000 * 60 * 60 * 24 * 3; // 3日前まで
const query = Notes.createQueryBuilder('note')
.where('note.userHost IS NULL')
.andWhere(`note.createdAt > :date`, { date: new Date(Date.now() - day) })
.andWhere(`note.visibility = 'public'`)
.leftJoinAndSelect('note.user', 'user');