doll active state <-> doll stream toggle

This commit is contained in:
2025-12-23 09:16:27 +08:00
parent cd71e97655
commit 6c63f2d803
8 changed files with 151 additions and 13 deletions

View File

@@ -275,7 +275,11 @@ export class FriendsService {
return this.prisma.friendship.findMany({
where: { userId },
include: {
friend: true,
friend: {
include: {
activeDoll: true,
},
},
},
orderBy: {
createdAt: 'desc',