mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 10:15:10 +00:00
Pack other side of relation into response as well
This commit is contained in:
parent
674fd13807
commit
a292e46f84
2 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
.limit(ps.limit)
|
||||
.getMany();
|
||||
|
||||
return await this.followingEntityService.packMany(followings, me, { populateFollowee: true });
|
||||
return await this.followingEntityService.packMany(followings, me, { populateFollowee: true, populateFollower: true });
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
|||
.limit(ps.limit)
|
||||
.getMany();
|
||||
|
||||
return await this.followingEntityService.packMany(followings, me, { populateFollowee: true });
|
||||
return await this.followingEntityService.packMany(followings, me, { populateFollowee: true, populateFollower: true });
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue