Return full chat list

This commit is contained in:
sevenhill
2026-07-05 14:13:51 +03:00
parent 6dd5c7c6fb
commit 64764e99ef
2 changed files with 42 additions and 1 deletions
@@ -30,7 +30,6 @@ public sealed class ChatsController(
.OrderByDescending(x => x.IsPinned)
.ThenByDescending(x => x.UnreadCount > 0)
.ThenByDescending(x => x.LastMessageAt ?? x.UpdatedAt)
.Take(200)
.ToArray();
return chats.Select(projection.ToDto).ToArray();