Skip to content

Commit a1a55c9

Browse files
authored
Merge pull request #95 from Move-Log/develop
[FIX] 사용자 검증 로직 주석 해제
2 parents cba5d42 + 6e4b04e commit a1a55c9

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/main/java/com/movelog/domain/record/application/RecordService.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public List<Recent5RecordImagesRes> retrieveCurrentRecordImages(UserPrincipal us
214214
* 전체 사용자 기록 통계 조회 (월별 조회 및 일간 조회 개선)
215215
*/
216216
public AllUserRecordStatsRes getAllUserRecordStats(UserPrincipal userPrincipal, String category, String period, String month) {
217-
// validUserById(userPrincipal);
217+
validUserById(userPrincipal);
218218
String redisKey = getRedisKey(period);
219219

220220
// 총 기록 횟수 조회
@@ -353,10 +353,6 @@ private int getMaxDailyRecord(String redisKey, String category) {
353353
return records.size();
354354
}
355355

356-
357-
/**
358-
* TOP 5 키워드 조회 (모든 데이터 가져온 후 서비스 단에서 필터링)
359-
*/
360356
/**
361357
* TOP 5 키워드 조회 (모든 데이터 가져온 후 서비스 단에서 필터링)
362358
*/

0 commit comments

Comments
 (0)