M7-12 P0 | listSessions 缺少 isDeleted 过滤 + 分页元数据 + isPinned 排序 #100
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
发现位置
rag-chat.service.tsL83-112listSessions方法。问题 1: 未过滤 isDeleted
已删除的会话会出现在列表中。
问题 2: 未返回分页元数据
当前只返回
ChatSession[],API Contract 要求:问题 3: 未按 isPinned 优先排序
当前
orderBy: { updatedAt: 'desc' },但设计文档要求:isPinned === true优先lastMessageAt DESC修复方案
where.isDeleted = false(默认排除已删除)PaginatedResponseorderBy: [{ isPinned: 'desc' }, { lastMessageAt: 'desc' }]lastMessageAt替代updatedAt排序涉及文件
修复
涉及: rag-chat.service.ts