Skip to content

Commit

Permalink
[feat/#95] make comment for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Sep 14, 2023
1 parent 1529abe commit b1a191e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file added .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions src/main/java/sookmyung/moaroom/Service/StepService.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void scoring(requestScoreDto data){

public void autoScoring(String id, requestAutoScoreDto data){
Step step = stepRepository.findByAssignmentIdAndUserId(UUID.fromString(id),data.getUser_id());
if (step.getStep() != Process.DONE.getRole()){
//if (step.getStep() != Process.DONE.getRole()){
// 과제 아이디로 정답과 런타임 불러오기
Assignment assignment = assignmentRepository.findByAssignmentId(UUID.fromString(id));

Expand All @@ -100,7 +100,7 @@ public void autoScoring(String id, requestAutoScoreDto data){
step.setStep(3);
step.setScore(score);
stepRepository.save(step);
}
//}
}

public List<responseStepDto> findStepList(String assignment_id){
Expand Down

0 comments on commit b1a191e

Please sign in to comment.