Skip to content
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] Event Enum 작성 및 변경 사항 수신 엔드포인트 구현 #92

Merged
merged 4 commits into from
Nov 18, 2024

Conversation

yangchef1
Copy link
Collaborator

@yangchef1 yangchef1 commented Nov 18, 2024

관련 이슈 번호

close #91
close #93

작업 내용

  • Event Enum 작성
  • Event DTO 작성
  • Information Type 작성
  • 변경 사항 수신 엔드포인트를 구현

고민과 학습내용

작업 분배를 위한 공통 모듈 구현 PR입니다 !

스크린샷

@yangchef1 yangchef1 added Feature 새로운 기능을 추가 BE 서버 작업 labels Nov 18, 2024
@yangchef1 yangchef1 changed the title [Feat] Event Enum을 작성 [Feat] Event Enum 작성 및 변경 사항 수신 엔드포인트 구현 Nov 18, 2024
Copy link
Collaborator

@PMtHk PMtHk left a comment

Choose a reason for hiding this comment

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

작업 속도가 매우 빠르시네요

apps/server/src/task/domain/information.type.ts Outdated Show resolved Hide resolved
let response;
switch (event) {
case EventType.CREATE_TASK:
// response = await this.taskService.create(user.id, taskEvent);
Copy link
Collaborator

Choose a reason for hiding this comment

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

🟢
Nest.js 의 이벤트 처리 방법에 대해 한번 보시면 좋을 것 같아요!
여기

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

오 읽어보고 반영해볼게요 !

@IsEnum(EventType)
event: EventType;

title: Information;
Copy link
Collaborator

Choose a reason for hiding this comment

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

🟡
위와 이어집니다!

@yangchef1 yangchef1 merged commit 7837b3c into dev Nov 18, 2024
1 check passed
@yangchef1 yangchef1 deleted the feat/#91 branch December 3, 2024 14:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
BE 서버 작업 Feature 새로운 기능을 추가
Projects
None yet
Development

Successfully merging this pull request may close these issues.

변경 사항 수신 엔드포인트를 구현한다. Event Enum을 작성한다.
3 participants