-
Notifications
You must be signed in to change notification settings - Fork 0
Feat/api 버전 넘버링 적용 #4
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
Merged
The head ref may contain hidden characters: "feat/api-\uBC84\uC804-\uB118\uBC84\uB9C1-\uC801\uC6A9"
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| ### 새 API 버전 추가 시 주의할 점 | ||
| - [ ] 새 API 버전에 대한 경로의 인증 필터링이 정상적으로 동작하나요? | ||
| - [ ] 프론트엔드에서 기존 API 버전도 정상적으로 동작하나요? | ||
| - [ ] 프론트엔드에서 새 API 버전을 사용하도록 변경되었나요? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
문제점:
/*/signup/**및/*/refresh/**패턴이 누락되어 있습니다. 현재/*/login/**은 추가되었지만 (라인 123), signup과 refresh에는 하위 경로 패턴이 없습니다.영향:
/v1/signup/confirm이나/v2/refresh/token같은 하위 경로가 있는 경우, 버전이 붙은 경로에 대해 인증 필터가 적용될 수 있습니다./login/**패턴의 버전별 대응인/*/login/**를 추가한 것처럼,/signup/**및/refresh/**에도 버전별 대응이 필요합니다.수정 제안:
라인 121과 122 다음에
/*/signup/**및/*/refresh/**패턴을 추가하여 일관성을 유지하세요.