- constants/index.js에서 CATEGORY_ID 상수 삭제 - 카테고리 API 데이터의 name으로 비교하도록 변경 (유튜브, X) - 봇 관리 페이지에 stagger 애니메이션 및 AnimatedNumber 추가 - admin/schedules API 경로 수정 (/admin/schedules/:id → /schedules/:id) - authApi export 누락 수정 - 문서 업데이트 (Phase 1 완료, 관리자 에러 페이지 추가 예정) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
347 B
JavaScript
16 lines
347 B
JavaScript
/**
|
|
* API 통합 export
|
|
*/
|
|
|
|
// 공통 유틸리티
|
|
export * from './client';
|
|
|
|
// 공개 API
|
|
export * from './public';
|
|
export * as scheduleApi from './public/schedules';
|
|
export * as albumApi from './public/albums';
|
|
export * as memberApi from './public/members';
|
|
|
|
// 관리자 API
|
|
export * from './admin';
|
|
export * as authApi from './admin/auth';
|