fromis_9/frontend/src/api/admin/index.js
caadiq 414b798914 feat(frontend): 활동 로그 API 연동 및 더미데이터 제거
더미데이터를 실제 API 호출(React Query)로 교체.
서버 사이드 필터링/페이지네이션, 검색 디바운스(300ms),
keepPreviousData로 페이지 전환 시 깜빡임 방지,
페이지 수가 많을 때 생략 부호(...) 페이지네이션 추가.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-02 17:06:39 +09:00

15 lines
488 B
JavaScript

/**
* 관리자 API 통합 export
*/
export * as adminScheduleApi from './schedules';
export * as adminAlbumApi from './albums';
export * as adminMemberApi from './members';
export * as adminCategoryApi from './categories';
export * as adminBotApi from './bots';
export * as adminStatsApi from './stats';
export * as adminSuggestionApi from './suggestions';
export * as adminLogApi from './logs';
export * as adminAuthApi from './auth';
// 개별 함수 export
export * from './auth';