-
Notifications
You must be signed in to change notification settings - Fork 3
chore : 문제 검색 api 경로 변경 #131
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
Conversation
Walkthrough이 변경사항은 문제 검색 컨트롤러의 패키지와 엔드포인트 경로를 수정하고, 프론트엔드 검색 페이지에서 관련 API 호출 경로를 새로운 엔드포인트에 맞게 업데이트합니다. 메서드 시그니처나 로직에는 변동이 없습니다. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant SearchPage (Frontend)
participant ProblemSearchController (Backend)
User->>SearchPage: 검색어 입력
SearchPage->>ProblemSearchController: GET /api/problems/suggestions (Authorization)
ProblemSearchController-->>SearchPage: 검색 제안 반환
User->>SearchPage: 검색 실행
SearchPage->>ProblemSearchController: GET /api/problems/search (Authorization)
ProblemSearchController-->>SearchPage: 검색 결과 반환
Possibly related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
🧰 Additional context used🧠 Learnings (3)📓 Common learningssrc/main/resources/templates/search-page.html (1)src/main/java/org/ezcode/codetest/presentation/problemmanagement/problem/ProblemSearchController.java (2)⏰ Context from checks skipped due to timeout of 90000ms (1)
🔇 Additional comments (5)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
작업 내용
Summary by CodeRabbit
/api/problems경로로 변경되었습니다.