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

Update src/lib/features/users/user-updates-read-model.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Gastón Fournier 2025-09-24 16:01:06 +02:00 committed by GitHub
parent 3ed342459a
commit 2683689fe8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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