Compare commits

..

No commits in common. "581b6975a3cc67902bc12b01f7ce5a13a4641e80" and "34590347a6673b6dfded26e2adba5241fc0697fd" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ class TokenProvider(
val memberTokenSet = memberToken.tokenList.toMutableSet()
memberTokenSet.add(token)
memberToken.tokenList = memberTokenSet.toMutableList()
memberToken.tokenList = memberTokenSet.toList()
tokenRepository.save(memberToken)
}

View File

@ -7,5 +7,5 @@ import org.springframework.data.redis.core.RedisHash
data class MemberToken(
@Id
val id: Long,
var tokenList: MutableList<String>
var tokenList: List<String>
)

View File

@ -30,5 +30,5 @@ data class Report(
}
enum class ReportType {
PROFILE, USER, CHEERS, AUDIO_CONTENT
REVIEW, PROFILE, USER, CHEERS, AUDIO_CONTENT
}