Skip to content

Commit

Permalink
[Fix] :: check response edit
Browse files Browse the repository at this point in the history
  • Loading branch information
lgwk42 committed May 23, 2024
1 parent 481ed7e commit c421599
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;
Expand All @@ -37,6 +38,7 @@ public class CheckController {
private final CheckCodeService checkCodeService;

@PostMapping("")
@ResponseStatus(HttpStatus.CREATED)
@Operation(summary = "출석 체크", description = "출석 체크")
public void attendanceCheck(@RequestBody CodeRequest codeRequest) {
checkService.attendance(codeRequest);
Expand Down

0 comments on commit c421599

Please sign in to comment.