Skip to content

Commit

Permalink
refactor(coffeechat) : 컨밴션 맞춤
Browse files Browse the repository at this point in the history
  • Loading branch information
Woongbin06 committed Apr 26, 2024
1 parent 02bf7b0 commit 572213b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ public static MySentCoffeeChatResponse from(CoffeeChat coffeeChat) {
coffeeChat.getId(),
coffeeChat.getState(),
coffeeChat.getMessage(),
coffeeChat.getState().equals(State.ACCEPT) ? ContactResponse.from(coffeeChat.getToUser().getContact()) : null,
coffeeChat.getState().equals(State.ACCEPT)
? ContactResponse.from(coffeeChat.getToUser().getContact()) : null,
UserResponse.from(coffeeChat.getToUser()),
UserResponse.from(coffeeChat.getFromUser())
);
Expand Down

0 comments on commit 572213b

Please sign in to comment.