Skip to content

Commit

Permalink
♻️ :: main rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
jyk1029 committed Jun 4, 2023
1 parent e23db6e commit 4f1b119
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,13 +283,8 @@ class UserHandler(
}

suspend fun getExcludeUserListHandler(serverRequest: ServerRequest): ServerResponse {
<<<<<<< main
requestHeaderAspect.getSecretValue(serverRequest)
val excludeUserIds = serverRequest.getExcludeUserIds().userIdList.nullIfBlank()?.map { UUID.fromString(it.toString()) }
=======
/*requestHeaderAspect.getSecretValue(serverRequest)*/
val excludeUserIds = serverRequest.getExcludeUserIds().userIdList?.nullIfBlank()?.map { UUID.fromString(it.toString()) }
>>>>>>> ♻️ :: SecretValue 주석처리
val excludeUserIds = serverRequest.getExcludeUserIds().userIdList.nullIfBlank()?.map { UUID.fromString(it.toString()) }
val users = userApi.getExcludeUserIdList(excludeUserIds)
val response = ExcludeUserIdListResponse(users)

Expand Down

0 comments on commit 4f1b119

Please sign in to comment.