1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00

Merge remote-tracking branch 'origin/feat/add-users-updated-at' into feat/add-users-updated-at

This commit is contained in:
Gastón Fournier 2025-09-24 16:50:21 +02:00
commit 419952584c
No known key found for this signature in database
GPG Key ID: AF45428626E17A8E

View File

@ -59,8 +59,8 @@ export class UserUpdatesReadModel {
// also consider deleted users (different than activeUsers query)
is_system: false,
is_service: false,
updated_at: { $gt: date },
})
.where('updated_at', '>', date)
.orderBy('updated_at', 'asc')
.select([...USER_COLUMNS_PUBLIC, 'updated_at', 'deleted_at'])
.limit(limit);