This commit is contained in:
syuilo 2019-04-15 12:03:00 +09:00
parent c6eafdde30
commit 663b8864c1
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')
.addSelect('note.score')
.where('note.userHost IS NULL')
.andWhere(`note.createdAt > :date`, { date: new Date(Date.now() - day) })
.andWhere(`note.visibility = 'public'`)