This commit is contained in:
syuilo 2023-03-01 14:22:53 +09:00
parent 9e5278d276
commit d0bbeeee52
3 changed files with 90 additions and 72 deletions

View file

@ -69,6 +69,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
return await Promise.all(assigns.map(async assign => ({
id: assign.id,
createdAt: assign.createdAt,
user: await this.userEntityService.pack(assign.user!, me, { detail: true }),
expiresAt: assign.expiresAt,
})));