feat: medium tests for user and sync service (#16304)

Co-authored-by: Zack Pollard <zackpollard@ymail.com>
This commit is contained in:
Jason Rasmussen
2025-02-25 11:31:07 -05:00
committed by GitHub
parent ae61ea7984
commit 7c851893b4
15 changed files with 634 additions and 24 deletions
+1 -1
View File
@@ -157,6 +157,6 @@ export function mapUserAdmin(entity: UserEntity): UserAdminResponseDto {
quotaSizeInBytes: entity.quotaSizeInBytes,
quotaUsageInBytes: entity.quotaUsageInBytes,
status: entity.status,
license: license ?? null,
license: license ? { ...license, activatedAt: new Date(license?.activatedAt) } : null,
};
}