Pack other side of relation into response as well

This commit is contained in:
PrivateGER 2024-10-07 11:56:18 +02:00
parent 674fd13807
commit a292e46f84
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
.limit(ps.limit) .limit(ps.limit)
.getMany(); .getMany();
return await this.followingEntityService.packMany(followings, me, { populateFollowee: true }); return await this.followingEntityService.packMany(followings, me, { populateFollowee: true, populateFollower: true });
}); });
} }
} }

View file

@ -54,7 +54,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
.limit(ps.limit) .limit(ps.limit)
.getMany(); .getMany();
return await this.followingEntityService.packMany(followings, me, { populateFollowee: true }); return await this.followingEntityService.packMany(followings, me, { populateFollowee: true, populateFollower: true });
}); });
} }
} }