We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fb4f10 commit b94ff7dCopy full SHA for b94ff7d
src/main/kotlin/uoslife/servermeeting/match/service/MatchingService.kt
@@ -32,7 +32,6 @@ class MatchingService(
32
@Cacheable(
33
value = ["meeting-participation"],
34
key = "#userId + ':' + #season",
35
- unless = "#result == null"
36
)
37
fun getUserMeetingParticipation(userId: Long, season: Int): MeetingParticipationResponse {
38
return matchedDao.findUserParticipation(userId, season)
@@ -41,7 +40,6 @@ class MatchingService(
41
40
42
value = ["match-info"],
43
key = "#userId + ':' + #teamType + ':' + #season",
44
45
46
fun getMatchInfo(userId: Long, teamType: TeamType, season: Int): MatchInfoResponse {
47
val userTeam =
0 commit comments