Skip to content

Commit

Permalink
Merge pull request #161 from Modagbul/feat/mission
Browse files Browse the repository at this point in the history
fix : 종료된 미션 정렬기준 변경
  • Loading branch information
seungueonn authored Dec 20, 2023
2 parents f09ffbe + b77ca13 commit ec1fd88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ public Optional<List<FinishMissionBoardRes>> findFinishMissionsByStatus(Long mem
.where(
mission.team.teamId.eq(teamId),
mission.status.eq(MissionStatus.SUCCESS).or(mission.status.eq(MissionStatus.END))
)
).orderBy(mission.lastModifiedDate.desc())
.fetch()
);
}
Expand Down

0 comments on commit ec1fd88

Please sign in to comment.