- api/ 디렉토리 구조 생성 - index.js: 공통 fetch 래퍼 - schedules.js, albums.js, members.js: 공개 API - admin/: 어드민 API (bots, albums, categories, members, schedules) - Schedule.jsx: API 모듈 적용 - AdminScheduleBots.jsx: API 모듈 적용
14 lines
277 B
JavaScript
14 lines
277 B
JavaScript
/**
|
|
* 멤버 관련 공개 API
|
|
*/
|
|
import { fetchApi } from "./index";
|
|
|
|
// 멤버 목록 조회
|
|
export async function getMembers() {
|
|
return fetchApi("/api/members");
|
|
}
|
|
|
|
// 멤버 상세 조회
|
|
export async function getMember(id) {
|
|
return fetchApi(`/api/members/${id}`);
|
|
}
|