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

refactor/post: 피드 생성 시 URL open-graph 이미지 url, 요약 상태 필드추가, 전체 피드 조회 시에도 해당 응답 키 값추가 #65

Merged
merged 4 commits into from
Jul 20, 2024

Conversation

JonghunAn
Copy link
Member

PR 내용

추가 및 변경 사항

[POST] post API(피드 생성) 시 ai 요약상태를 in_progress 상태로 저장, URL의 thumbnail image 추가
[GET] post API (게시글 조회)시 두 상태값 응답에 추가
[ai-worker] 람다에서 ai 요약 성공, 실패에 대한 post 업데이트 추가 (success, fail)

PR 중점사항

post 응답값이 바뀌면서 다른 도메인에도 post 정보 조회하는곳에서 thumbnail_image_url 필드랑 postAIStatus 필드 추가가 필요한데
내가 또 다 바꾸면 에러가 죄다 날꺼라... 도메인 담당자들이 변경 좀 부탁해요~ @hye-on , @Marades , @J-Hoplin

스크린샷

@github-actions github-actions bot added document 문서화 관련 작업 수정 및 생성 refactor labels Jul 20, 2024
@hye-on
Copy link
Collaborator

hye-on commented Jul 20, 2024

PR 중점사항

post 응답값이 바뀌면서 다른 도메인에도 post 정보 조회하는곳에서 thumbnail_image_url 필드랑 postAIStatus 필드 추가가 필요한데
내가 또 다 바꾸면 에러가 죄다 날꺼라... 도메인 담당자들이 변경 좀 부탁해요~ @hye-on , @Marades , @J-Hoplin

오키~~

Comment on lines 342 to +346
async updatePostClassificationForAIClassification(
postId: string,
classificationId: string,
description: string,
postAiStatus: PostAiStatus,
postId: string | null,
classificationId: string | null,
description: string | null,
Copy link
Collaborator

Choose a reason for hiding this comment

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

postId랑 classificationId null일 경우가 궁금쓰

Copy link
Member Author

Choose a reason for hiding this comment

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

ai요약 실패했을경우 null로 올거라 동일한 메서드 사용하면서 status만 변경할 수 있게 나머지 값들은 null도 같이 받을 수 있게 변경했어!

Comment on lines +31 to +32
@ApiProperty({ required: false, description: 'URL og 이미지' })
thumbnail_img_url: string;
Copy link
Collaborator

Choose a reason for hiding this comment

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

(˵ •̀ ᴗ - ˵ ) ✧
카멜로용

Copy link
Member Author

Choose a reason for hiding this comment

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

오잉 이거 그냥 머지했어?! ㅋㅋㅋ 미안미안 바로 바꿔서 배포하겟음!

Copy link
Collaborator

@hye-on hye-on left a comment

Choose a reason for hiding this comment

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

고생했어!!! 👍

@hye-on hye-on merged commit cc61150 into develop Jul 20, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
document 문서화 관련 작업 수정 및 생성 refactor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

POST 생성 시 URL open-graph 이미지 추가, 요약 상태 필드추가
2 participants