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

Feature/party 파티 컨트롤러 수정, 서비스 수정 #72

Merged
merged 6 commits into from
Jan 20, 2024

Conversation

daeundada
Copy link
Member

No description provided.


PartyResponseDTO responseDto = partyService.getPartyDto(partyId);
PartyResponseDTO responseDto = partyService.getPartyDto(hiveId, partyId);
Copy link
Member

Choose a reason for hiding this comment

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

코드 컨벤션에서 DTO로 사용하기로 했는데, Dto로 사용하신 이유가 있으신가요?

Party party = partyRepository.findById(partyId)
.filter(p -> !p.isDeleted()) // 삭제 되지 않은 파티만 필터링
.orElseThrow(PartyNotFoundException::new);
public PartyResponseDTO getPartyDto(Long hiveId, Long partyId) {
Copy link
Member

Choose a reason for hiding this comment

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

코드 컨벤션에서 DTO로 사용하기로 했는데, Dto로 사용하신 이유가 있으신가요?

Copy link
Collaborator

@kdy9960 kdy9960 left a comment

Choose a reason for hiding this comment

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

고생하셨습니다

@wkdehdgk159 wkdehdgk159 merged commit 5cdb329 into dev Jan 20, 2024
@daeundada daeundada self-assigned this Aug 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants