Skip to content

Commit

Permalink
fix : 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-jaesungyu committed Apr 4, 2024
1 parent e06f802 commit 7ddb627
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Excepti
List.of(
"http://localhost:3000", "http://localhost:5500", "http://localhost:5000",
"http://127.0.0.1:3000", "http://127.0.0.1:5500", "http://127.0.0.1:5000",
"http://hhboard.shop" // 프론트엔드 주소 추가 필요
"http://hhboard.shop", "https://hhboard.shop" // 프론트엔드 주소 추가 필요
)
);
configuration.setAllowedMethods(Collections.singletonList("*"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.web.bind.annotation.*;

@Tag(name = "댓글 API", description = " 관련 API 입니다.")
@Tag(name = "댓글 API", description = "댓글 관련 API 입니다.")
@RestController
@AllArgsConstructor
@RequestMapping("/comments")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
@RestController
@RequestMapping("/users")
@RequiredArgsConstructor
@Tag(name = "회원 API", description = "회원가입, 로그인관련 Api 입니다.")
@Tag(name = "회원 API", description = "회원가입, 로그인 관련 API 입니다.")
public class UserController {
private final UserService userService;
private final KakaoService kakaoService;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/nawabali/nawabali/dto/SignupDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ public static class SignupRequestDto{
@Schema(description = "8자~15자 이내의 비밀번호. 대소문자(둘 중 하나), 숫자, 특수문자 1개씩 이상 입력. 조건 미충족으로 폼 제출 시 exception 발생.", example = "StrongP@ss123")
@NotBlank
private String password;
@Schema(description = "비밀번호 확인. password 값과 일치하지 않으면 조건 미충족으로 폼 제출 시 exception 발생.")
@Schema(description = "비밀번호 확인. password 값과 일치하지 않으면 조건 미충족으로 폼 제출 시 exception 발생.", example = "StrongP@ss123")
@NotBlank
private String confirmPassword;
@Schema(description = "사용자 역할.", example = "관리자라면 true")
private boolean admin;
@Schema(description = "이메일 인증여부. 이메일 인증 api응답에 의해 결정. false로 폼 제출 시 exception 발생.", example = "인증됐다면 true")
@Schema(description = "이메일 인증여부. 이메일 인증 api응답에 의해 결정. false로 폼 제출 시 exception 발생.", example = "true")
private boolean certificated;

// 주소 정보 관련
Expand Down

0 comments on commit 7ddb627

Please sign in to comment.