Skip to content

Commit

Permalink
Merge pull request #184 from Kusitms-28th-MeetUp-C/feature/179-global
Browse files Browse the repository at this point in the history
Feature/179 global
  • Loading branch information
qogustj committed Nov 22, 2023
2 parents e02800c + 633dcbb commit 3624a08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public TeamRoadmapDetailResponseDto getTeamRoadmapDetail(Long teamId) {
CustomRoadmap teamRoadmap = team.getRoadmapDownload().getCustomRoadmap();
List<CustomRoadmapSpaceDetailResponseDto> teamRoadmapSpaceDetailResponseDtoList
= createTeamRoadmapSpaceDetailResponseDto(teamRoadmap.getCustomRoadmapSpaceList());
Long processingNum = getProcessingNum(teamRoadmap);
Long processingNum = getProcessingNum(teamRoadmap)+1;
CustomRoadmapDetailResponseDto teamRoadmapDetailResponseDto
= CustomRoadmapDetailResponseDto.of(teamRoadmap, processingNum.intValue(), teamRoadmapSpaceDetailResponseDtoList);
return TeamRoadmapDetailResponseDto.of(team, teamSpaceResponseDtoList, teamRoadmapDetailResponseDto);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public class CustomTemplate {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "custom_tamplate_id")
@Column(name = "custom_template_id")
private Long id;
private String title;
@Enumerated(EnumType.STRING)
Expand Down

0 comments on commit 3624a08

Please sign in to comment.