- 채널 설명/태그 DB 컬럼 추가 및 백오피스 편집 기능 - 채널 드롭다운을 유튜브 아이콘 토글 카드로 변경 (데스크톱 최대 4개 표시, 스크롤) - 모바일 홈탭 채널 카드 가로 스크롤 - region "나라" 값 필터 옵션에서 제외 - 관리자 캐시 초기화 버튼 및 API 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
610 B
Java
26 lines
610 B
Java
package com.tasteby.controller;
|
|
|
|
import com.tasteby.security.AuthUtil;
|
|
import com.tasteby.service.CacheService;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import java.util.Map;
|
|
|
|
@RestController
|
|
@RequestMapping("/api/admin")
|
|
public class AdminCacheController {
|
|
|
|
private final CacheService cacheService;
|
|
|
|
public AdminCacheController(CacheService cacheService) {
|
|
this.cacheService = cacheService;
|
|
}
|
|
|
|
@PostMapping("/cache-flush")
|
|
public Map<String, Object> flushCache() {
|
|
AuthUtil.requireAdmin();
|
|
cacheService.flush();
|
|
return Map.of("ok", true);
|
|
}
|
|
}
|