Skip to content

Commit

Permalink
#28 [refacor] @PostMapping 리팩토링
Browse files Browse the repository at this point in the history
  • Loading branch information
sohyundoh committed Jul 11, 2023
1 parent 63626eb commit 0ac49f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
public class MeetingController {
private final MeetingService meetingService;

@PostMapping("")
@PostMapping
public ApiResponse<MeetingSaveResponseDto> create(@RequestBody @Valid MeetingSaveRequestDto meetingSaveRequestDto){
return ApiResponse.success(Success.CREATE_MEETING_SUCCESS, meetingService.create(meetingSaveRequestDto) );
}
Expand Down

0 comments on commit 0ac49f5

Please sign in to comment.