Skip to content

Conversation

@IISweetHeartII
Copy link
Contributor

Summary

경험정리 수정(PATCH) API를 추가해 기존 경험정리 데이터를 업데이트할 수 있도록 구현했습니다.

Changes

  • PATCH /experiences/:id 엔드포인트 추가
  • 수정 요청 DTO 및 응답 DTO 매핑 보강
  • Facade/Service 계층에 수정 로직 및 예외 처리 추가
  • 컨트롤러 Swagger 스펙/응답 타입 반영

Type of Change

해당하는 항목에 체크해주세요:

  • Bug fix (기존 기능을 수정하는 변경)
  • New feature (새로운 기능 추가)
  • Breaking change (기존 기능에 영향을 주는 변경)
  • Refactoring (기능 변경 없이 코드 개선)
  • Documentation (문서 변경)
  • Chore (빌드, 설정 등)

Target Environment

배포 대상 브랜치를 선택해주세요:

  • Dev (dev)
  • Prod (main)

Related Issues

관련 이슈를 연결해주세요:

Testing

테스트 방법을 작성해주세요:

  • Postman/Swagger로 API 호출 확인
  • 단위 테스트 통과
  • E2E 테스트 통과
  • pnpm run lint 통과
  • pnpm run build 통과
  • pnpm exec jest --passWithNoTests 통과

Checklist

PR 생성 전 확인사항:

  • 코드 컨벤션을 준수했습니다 (docs/development/CODE_STYLE.md)
  • Git 컨벤션을 준수했습니다 (docs/development/GIT_CONVENTIONS.md)
  • 네이밍 컨벤션을 준수했습니다 (docs/development/NAMING_CONVENTIONS.md)
  • 로컬에서 빌드가 성공합니다 (pnpm run build)
  • 로컬에서 린트가 통과합니다 (pnpm run lint)
  • (API 변경 시) Swagger 문서가 업데이트되었습니다
  • (필요 시) 테스트 코드를 작성했습니다

Screenshots (Optional)

N/A

Additional Notes

TransformInterceptor 응답 컨벤션 및 Service 계층 예외 처리 규칙을 준수했습니다.

@IISweetHeartII IISweetHeartII self-assigned this Feb 12, 2026
@IISweetHeartII IISweetHeartII added ✨ feature New feature or request 덕환 labels Feb 12, 2026
@gemini-code-assist
Copy link

Summary of Changes

Hello @IISweetHeartII, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

이 PR은 기존 경험 정리 데이터를 업데이트할 수 있는 기능을 도입합니다. 사용자는 이제 경험 정리의 제목이나 희망 직무를 수정할 수 있으며, 이는 서비스의 유연성을 높이고 사용자 경험을 개선하는 데 기여합니다.

Highlights

  • 새로운 API 엔드포인트 추가: PATCH /experiences/:id 엔드포인트가 추가되어 경험 정리 데이터를 수정할 수 있게 되었습니다.
  • DTO 매핑 보강: 경험 정리 수정 요청 및 응답을 위한 DTO(Data Transfer Object) 매핑이 보강되었습니다.
  • 핵심 로직 및 예외 처리 구현: Facade 및 Service 계층에 경험 정리 수정 로직과 이름 중복 검사 등의 예외 처리가 구현되었습니다.
  • 컨트롤러 Swagger 스펙 반영: 컨트롤러에 새로운 수정 API에 대한 Swagger 스펙 및 응답 타입이 반영되었습니다.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • src/modules/experience/application/dtos/experience.dto.ts
    • IsOptional 데코레이터가 추가되었습니다.
    • 경험 정리 수정을 위한 UpdateExperienceReqDTO가 새로 정의되었습니다.
  • src/modules/experience/application/facades/experience.facade.ts
    • UpdateExperienceReqDTO를 임포트했습니다.
    • 경험 정리 수정을 처리하는 updateExperience 메서드가 추가되었습니다.
  • src/modules/experience/application/services/experience.service.ts
    • UpdateExperienceReqDTO를 임포트했습니다.
    • 경험 정리 수정을 위한 updateExperience 메서드가 추가되었으며, 이름 중복 검사 로직이 포함되었습니다.
  • src/modules/experience/presentation/experience.controller.ts
    • Patch 데코레이터와 UpdateExperienceReqDTO를 임포트했습니다.
    • PATCH /experiences/:experienceId 엔드포인트를 추가하고, Swagger 문서화 및 예외 처리 스펙을 정의했습니다.
Activity
  • 이 PR은 새로운 기능 구현을 위해 생성되었으며, 현재까지 추가적인 리뷰 활동이나 코멘트는 없습니다.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

이 PR은 경험 정리 수정 API를 추가합니다. 감사된 파일에서 특정 취약점은 발견되지 않았습니다. 전반적으로 아키텍처와 스타일 가이드를 잘 따르고 있으나, ExperienceService의 업데이트 로직에서 불필요한 데이터베이스 연산을 줄여 효율성을 높일 수 있는 개선점이 발견되었습니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

✨ feature New feature or request 덕환

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Feat] 경험정리 개별 수정 API 구현

1 participant