feat: 스터디 설정 및 관리 기능 구현 (정보 수정, 위임, 해체)#119
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
스터디장이 스터디 기본 정보(이름/소개)를 수정하고, 스터디장 위임/스터디 해체까지 수행할 수 있도록 관리 화면과 API를 추가/연결하는 PR입니다. (Issue #115 범위의 “소개 편집”을 포함해 관리 기능까지 확장)
Changes:
- 프론트: 프로필의 스터디장 메뉴를 “스터디 설정 및 관리”로 통합하고
/study/manage관리 화면을 신규 추가 - 프론트: 스터디 정보 수정(PATCH), 위임/해체 모달 UI 및 라우팅 연결
- 백엔드: 스터디 상세 응답에
creatorId를 포함하고, 스터디 정보 수정 PATCH API 및 서비스 로직 추가
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| frontend/src/views/user/ProfileView.vue | 기존 위임/해체 UI 제거 후 관리 페이지로 이동하는 메뉴로 변경 |
| frontend/src/views/study/StudyManageView.vue | 스터디 관리 전용 화면(정보 수정/위임/해체) 신규 추가 |
| frontend/src/router/index.js | /study/manage 라우트 추가 |
| frontend/src/api/study.js | 스터디 정보 수정용 update()(PATCH) API 추가 |
| backend/src/main/java/com/ssafy/dash/study/presentation/dto/response/StudyListResponse.java | 스터디 응답에 creatorId 필드 추가 |
| backend/src/main/java/com/ssafy/dash/study/presentation/dto/UpdateStudyRequest.java | 스터디 수정 요청 DTO 신규 추가 |
| backend/src/main/java/com/ssafy/dash/study/presentation/StudyController.java | 스터디 정보 수정 PATCH 엔드포인트 추가 |
| backend/src/main/java/com/ssafy/dash/study/application/StudyService.java | 스터디 정보 수정 서비스 로직 추가 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
backend/src/main/java/com/ssafy/dash/study/application/StudyService.java
Show resolved
Hide resolved
Collaborator
|
Copilot 리뷰가 전반적으로 반영할만하다고 생각되네요. |
Collaborator
Author
반영했습니다 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🚀 작업 배경
스터디장이 스터디의 기본 정보를 수정하고, 권한을 위임하거나 스터디를 해체할 수 있는 종합적인 관리 기능이 필요했습니다.
🛠️ 주요 변경 사항
🔗 관련 이슈