Skip to content

Commit

Permalink
Merge pull request #130 from GoormJeans/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
devkeon committed Dec 28, 2023
2 parents e7d8c5c + f7af54a commit 0005f0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ public class StompResponse {

private String content;

private Timestamp createAt;
private Timestamp createdAt;
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public StompResponse saveAndMessage(Long AlgorithmId, String nickname, String co
.chatId(chat.getChatId())
.nickname(chat.getNickname())
.content(chat.getContent())
.createAt(Timestamp.valueOf(chat.getCreatedAt()))
.createdAt(Timestamp.valueOf(chat.getCreatedAt()))
.build();

}
Expand Down

0 comments on commit 0005f0c

Please sign in to comment.