Skip to content

Commit

Permalink
Merge pull request #24 from TravelMate-KU/oauth
Browse files Browse the repository at this point in the history
feat user 엔티티 기본 생성자 추가
  • Loading branch information
jaeuk520 authored Mar 10, 2024
2 parents 7bfd8f5 + fe0c764 commit 393eeb8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules/travelmate.main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/main/java/konkuk/travelmate/domain/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@Entity
@Getter
@RequiredArgsConstructor
@ToString
@NoArgsConstructor
public class User {

@Id
Expand Down Expand Up @@ -41,6 +41,7 @@ public User(@NonNull String name, @NonNull String email, @NonNull String passwor
this.health = health;
}


public void setHealth(Health health){
this.health=health;
}
Expand Down

0 comments on commit 393eeb8

Please sign in to comment.