-
Notifications
You must be signed in to change notification settings - Fork 0
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
Feat/admin 관리자 페이지 구현 step2 #10
Conversation
Caution Review failedThe pull request is closed. WalkthroughThe changes add and modify dependencies, DTO records, mapping methods, use case logic, and endpoints to support enhanced teacher management and class matching. New QueryDSL support and a configuration class are introduced. The updates include package restructuring in the parents and matching domains, modifications to entity fields (such as renaming and adding new properties), and updates to enum values from English to Korean. In addition, the SQL migration script has been updated to reflect these schema changes. Changes
Sequence Diagram(s)sequenceDiagram
participant AC as AdminController
participant AI as AdminInfoUseCase
participant AGS as AdminGetService
participant TR as TeacherRepository
AC->>AI: searchTeachers(params)
AI->>AGS: allTeacherBySearch(request)
AGS->>TR: findAllSearchTeacher(request)
TR-->>AGS: List<Teacher>
AGS-->>AI: List<Teacher>
AI-->>AC: AllFilteringTeacher response
sequenceDiagram
participant AC as AdminController
participant AM as AdminManageUseCase
participant AG as AdminGetService
participant AU as AdminUpdateService
participant T as Teacher
AC->>AM: updateTeacherIssue(teacherId, request)
AM->>AG: teacherById(teacherId)
AG-->>AM: Teacher
AM->>AU: updateTeacherIssue(Teacher, request.issue)
AU->>T: updateIssue(issue)
T-->>AU: Updated Teacher
AU-->>AM: Confirmation
AM-->>AC: 200 OK
Poem
Tip 🌐 Web search-backed reviews and chat
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (33)
✨ Finishing Touches
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
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 (
|
🐈 PR 요약
✨ PR 상세
🚨 참고사항
✅ 체크리스트
Summary by CodeRabbit
New Features
Chores