Skip to content

Commit

Permalink
🥭 added more details
Browse files Browse the repository at this point in the history
  • Loading branch information
HeeManSu committed Jul 14, 2024
1 parent fb05f13 commit 06af103
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/repositories/sprintRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ class SprintRepository {
return await prisma.sprint.findMany({
include: {
organization: true,
issue: true
issue: {
include: {
team_member: true,
organization: true,
}
}
},
});
}
Expand Down

0 comments on commit 06af103

Please sign in to comment.