Skip to content

Commit

Permalink
🐞 hotfix 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
squirMM committed Jul 26, 2023
1 parent e487f77 commit 7bb49b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@Controller
@RequestMapping("/auth/login")
@RequiredArgsConstructor
@Api(tags = "카카오")
@Api(tags = "카카오_로그인")
public class KakaoController {

private final KakaoService kakaoService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class PostCommentDto {
@ApiModelProperty(value = "댓글 내용", example = "여기 맛집 맞아용~!!")
@NotNull
private String Content;
private String content;

public PostCommentDto(String content) {
this.content = content;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/Backend/HIFI/domain/user/UserController.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@RestController
@RequestMapping("/user")
@RequiredArgsConstructor
@Api(tags = "유저")
@Api(tags = "사용자")
public class UserController {

private final UserService userService;
Expand Down

0 comments on commit 7bb49b6

Please sign in to comment.