Skip to content

Commit

Permalink
Tht server 191 유저 문서화 카테고리 분리 (#192)
Browse files Browse the repository at this point in the history
* docs : 회원가입 문서 분리

* docs : 로그인 문서 카테고리 분리
  • Loading branch information
thalals authored Mar 7, 2024
1 parent 6fc6990 commit a0c3ef9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void getCertificationNumber() throws Exception {
preprocessResponse(prettyPrint()),
resource(
ResourceSnippetParameters.builder()
.tag("유저")
.tag("유저 - 회원가입")
.description("유저 번호 인증번호 발급")
.pathParameters(parameterWithName("phone-number").description("유저 폰 번호"))
.requestFields()
Expand Down Expand Up @@ -102,7 +102,7 @@ void duplicateNickname() throws Exception {
preprocessResponse(prettyPrint()),
resource(
ResourceSnippetParameters.builder()
.tag("유저")
.tag("유저 - 회원가입")
.description("유저 닉네임 중복 체크")
.pathParameters(parameterWithName("nick-name").description("닉네임"))
.requestFields()
Expand Down Expand Up @@ -140,7 +140,7 @@ void normalUserJoin() throws Exception {
preprocessResponse(prettyPrint()),
resource(
ResourceSnippetParameters.builder()
.tag("유저")
.tag("유저 - 회원가입")
.description("유저 일반 회원가입")
.requestFields(
fieldWithPath("username").description("닉네임"),
Expand Down Expand Up @@ -212,7 +212,7 @@ void getUserSignUpInfo() throws Exception {
preprocessResponse(prettyPrint()),
resource(
ResourceSnippetParameters.builder()
.tag("유저")
.tag("유저 - 회원가입")
.description("유저 회원가입 이력 조회")
.pathParameters(parameterWithName("phone-number").description("핸드폰 번호"))
.requestFields()
Expand Down Expand Up @@ -250,7 +250,7 @@ void integratedUserJoin() throws Exception {
preprocessResponse(prettyPrint()),
resource(
ResourceSnippetParameters.builder()
.tag("유저")
.tag("유저 - 회원가입")
.description("유저 SNS 아이디 통합 회원 가입")
.requestFields(
fieldWithPath("phoneNumber").description("전화번호"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void normalUserLogin() throws Exception {
preprocessResponse(prettyPrint()),
resource(
ResourceSnippetParameters.builder()
.tag("유저")
.tag("유저 - 로그인")
.description("유저 일반 로그인")
.requestFields(
fieldWithPath("phoneNumber").description("유저 전화번호"),
Expand Down Expand Up @@ -101,7 +101,7 @@ void snsUserLogin() throws Exception {
preprocessResponse(prettyPrint()),
resource(
ResourceSnippetParameters.builder()
.tag("유저")
.tag("유저 - 로그인")
.description("유저 SNS 로그인")
.requestFields(
fieldWithPath("email").description("유저 email"),
Expand Down Expand Up @@ -143,7 +143,7 @@ void refreshTokenDocs() throws Exception {
preprocessResponse(prettyPrint()),
resource(
ResourceSnippetParameters.builder()
.tag("유저")
.tag("유저 - 로그인")
.description("유저 access token 재발급 요청")
.responseFields(
fieldWithPath("accessToken").description("액세스 토큰"),
Expand Down Expand Up @@ -176,7 +176,7 @@ void refreshTokenDocs_fail() throws Exception {
preprocessResponse(prettyPrint()),
resource(
ResourceSnippetParameters.builder()
.tag("유저")
.tag("유저 - 로그인")
.description("유저 access token 재발급 요청 - refresh token 만료 시")
.responseFields(
fieldWithPath("timestamp").description("exception 발생 시각"),
Expand Down

0 comments on commit a0c3ef9

Please sign in to comment.