Skip to content

Commit

Permalink
[fix] 팜클럽 가입 시 0번 스텝명으로 초기화
Browse files Browse the repository at this point in the history
  • Loading branch information
MinchoGreenT committed Jul 3, 2024
1 parent edb6e14 commit b94dc34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public RegisterFarmClubResponseDto registerFarmClub(Long farmClubId, Long myVegg
MyVeggie myVeggie = myVeggieHelper.getMyVeggieEntity(myVeggieId);
FarmClub farmClub = farmClubHelper.getFarmClubEntity(farmClubId);
// 채소정보 id로 채소의 첫 스텝명 불러옴
String stepName = "";
String stepName = veggieInfoHelper.getStepName(farmClub.getVeggieInfoId(), 0);
UserFarmClub userFarmClub = createUserFarmClubEntity(userId, stepName, farmClub, myVeggie);
farmClub.addUserFarmClub(userFarmClub);
myVeggie.setUserFarmClub(userFarmClub);
Expand Down

0 comments on commit b94dc34

Please sign in to comment.