fix backend typecheck

This commit is contained in:
riku6460 2023-12-23 20:43:27 +09:00
parent 3df907ca56
commit 26be9bacc8
No known key found for this signature in database
GPG Key ID: 27414FA27DB94CF6
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ export class NotificationEntityService implements OnModuleInit {
detail: false, detail: false,
}) })
) : undefined; ) : undefined;
const role = notification.type === 'roleAssigned' ? await this.roleEntityService.pack(notification.roleId) : undefined; const role = notification.type === 'roleAssigned' ? await this.roleEntityService.pack(notification.roleId, { id: meId }) : undefined;
return await awaitAll({ return await awaitAll({
id: notification.id, id: notification.id,
@ -220,7 +220,7 @@ export class NotificationEntityService implements OnModuleInit {
}); });
} }
const role = notification.type === 'roleAssigned' ? await this.roleEntityService.pack(notification.roleId) : undefined; const role = notification.type === 'roleAssigned' ? await this.roleEntityService.pack(notification.roleId, { id: meId }) : undefined;
return await awaitAll({ return await awaitAll({
id: notification.id, id: notification.id,