-
Notifications
You must be signed in to change notification settings - Fork 0
진행중인 정산/ 완료 정산 api 추가 #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
7b0e8c0
e93df58
9750582
c904e6a
1ef658d
416560f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -99,4 +99,35 @@ include::{snippets}/auth-controller-test/kakao-logout/http-response.adoc[] | |||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ==== 응답 | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| include::{snippets}/auth-controller-test/kakao-logout/response-body.adoc[] | ||||||||||||||||||||||||||||||
| include::{snippets}/auth-controller-test/kakao-logout/response-body.adoc[] | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| == 토큰 상태 확인 | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| 쿠키에 담긴 토큰의 유효성을 확인합니다 | ||||||||||||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 설명 문장 끝에 마침표가 누락되었습니다. 기존 모든 섹션의 설명문은 마침표로 끝나지만, 이 섹션만 누락되어 있습니다. 📄 수정 제안-쿠키에 담긴 토큰의 유효성을 확인합니다
+쿠키에 담긴 토큰의 유효성을 확인합니다.📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| === Example | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| include::{snippets}/auth-controller-test/check-auth_-success/http-request.adoc[] | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| === HTTP | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ==== 요청 | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| include::{snippets}/auth-controller-test/check-auth_-success/curl-request.adoc[] | ||||||||||||||||||||||||||||||
|
Comment on lines
+110
to
+116
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
파일 내 모든 기존 섹션은 아래 패턴을 따릅니다.
그러나 새로 추가된 "토큰 상태 확인" 섹션은 두 파일이 반대로 포함되어 있어, 렌더링된 문서에 잘못된 내용이 표시됩니다. 📄 수정 제안 === Example
-include::{snippets}/auth-controller-test/check-auth_-success/http-request.adoc[]
+include::{snippets}/auth-controller-test/check-auth_-success/curl-request.adoc[]
=== HTTP
==== 요청
-include::{snippets}/auth-controller-test/check-auth_-success/curl-request.adoc[]
+include::{snippets}/auth-controller-test/check-auth_-success/http-request.adoc[]📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ==== 응답 | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| include::{snippets}/auth-controller-test/check-auth_-success/http-response.adoc[] | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| === Body | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ==== 응답 (valid) | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| include::{snippets}/auth-controller-test/check-auth_-success/response-body.adoc[] | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ==== 응답 (invalid) | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| include::{snippets}/auth-controller-test/check-auth_-expired/response-body.adoc[] | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| include::{snippets}/auth-controller-test/check-auth_-invalid-token/response-body.adoc[] | ||||||||||||||||||||||||||||||
|
Comment on lines
+110
to
+132
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Description: 실제 생성된 스니펫 디렉터리 이름을 확인하고, 테스트 메서드명을 조회합니다.
# 생성된 스니펫 디렉터리 확인
echo "=== Snippet directories with 'check-auth' ==="
fd -t d "check-auth" --full-path
# 테스트 클래스에서 check-auth 관련 메서드명 조회
echo -e "\n=== Test methods related to check-auth ==="
rg -n "checkAuth|check_auth|check-auth" --type=java -A 2Repository: moddo-kr/moddo-backend Length of output: 1813 🏁 Script executed: #!/bin/bash
# Description: REST Docs 스니펫 출력 위치 확인 및 실제 디렉터리명 검색
echo "=== 일반적인 REST Docs 출력 디렉터리 검색 ==="
# 일반적으로 build/, target/, build-snippets/ 등에 생성됨
find . -type d -name "*snippet*" -o -type d -name "*rest-docs*" 2>/dev/null | head -20
echo -e "\n=== 'check' 키워드로 관련 디렉터리 검색 ==="
fd -t d "check" --max-depth 5 | grep -v node_modules | head -20
echo -e "\n=== build 디렉터리 내 check-auth 관련 파일/디렉터리 ==="
find build -type d -name "*check-auth*" -o -type d -name "*checkAuth*" 2>/dev/nullRepository: moddo-kr/moddo-backend Length of output: 176 🏁 Script executed: #!/bin/bash
# Description: AuthControllerTest.java 전체 내용 조회 - checkAuth 관련 메서드들
cat -n src/test/java/com/dnd/moddo/domain/auth/controller/AuthControllerTest.java | grep -A 1 "void checkAuth"Repository: moddo-kr/moddo-backend Length of output: 349 스니펫 디렉터리 경로의 Spring REST Docs는 테스트 메서드명을 디렉터리명으로 변환할 때 언더스코어를 하이픈으로 변환합니다. 현재 문서의 경로들은 올바르지 않습니다:
또한 🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
Uh oh!
There was an error while loading. Please reload this page.