Skip to content

Commit

Permalink
delete :: role 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
Umjiseung committed May 2, 2024
1 parent 4418f09 commit 5272aba
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ data class AcceptUserReqDto(
grade = grade,
classNum = classNum,
num = num,
roles = mutableListOf(UserRoleType.ROLE_STUDENT),
state = UserState.CREATED,
profileUrl = user.profileUrl,
wrongPasswordCount = user.wrongPasswordCount,
Expand All @@ -47,7 +46,6 @@ data class AcceptUserReqDto(
grade = grade,
classNum = classNum,
num = num,
roles = mutableListOf(UserRoleType.ROLE_TEACHER),
state = UserState.CREATED,
profileUrl = user.profileUrl
)
Expand All @@ -63,7 +61,6 @@ data class AcceptUserReqDto(
grade = grade,
classNum = classNum,
num = num,
roles = mutableListOf(UserRoleType.ROLE_GRADUATE),
state = UserState.CREATED,
profileUrl = user.profileUrl
)
Expand Down

0 comments on commit 5272aba

Please sign in to comment.