Skip to content

Commit

Permalink
Merge pull request #285 from GSM-MSG/282-feat/excel-parsing-service-u…
Browse files Browse the repository at this point in the history
…ser-state-created

🔀  :: set user status created
  • Loading branch information
KimTaeO authored Mar 8, 2024
2 parents 2d16170 + f9ff61b commit f5b0226
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package com.msg.gauth.domain.admin.service
import com.msg.gauth.domain.admin.exception.FileExtensionInvalidException
import com.msg.gauth.domain.user.User
import com.msg.gauth.domain.user.enums.Gender
import com.msg.gauth.domain.user.enums.UserState
import com.msg.gauth.domain.user.repository.UserRepository
import com.msg.gauth.global.annotation.service.TransactionalService
import com.msg.gauth.global.util.ExcelUtil
Expand Down Expand Up @@ -63,7 +64,7 @@ class ExcelParsingService(
classNum = updateDto.classNum,
num = updateDto.num,
roles = it.roles,
state = it.state,
state = UserState.CREATED,
profileUrl = it.profileUrl
)
)
Expand Down

0 comments on commit f5b0226

Please sign in to comment.