Skip to content

Commit

Permalink
📝 AuthConverter 메서드에 point 필드 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuuuuuk committed Oct 12, 2023
1 parent 90c8906 commit baf895b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ class AuthConverterImpl : AuthConverter {
id = UUID.randomUUID(),
email = user.email,
password = user.password,
point = 0,
role = mutableListOf(Role.ROLE_USER)
)

Expand All @@ -32,6 +33,7 @@ class AuthConverterImpl : AuthConverter {
id = UUID.randomUUID(),
email = user.email,
password = user.password,
point = 0,
role = mutableListOf(Role.ROLE_ADMIN)
)

Expand Down

0 comments on commit baf895b

Please sign in to comment.