8 lines
305 B
JavaScript
8 lines
305 B
JavaScript
import { getPublicNavigation } from '../repositories/content-repository'
|
|
|
|
/**
|
|
* 공개 네비게이션 API
|
|
* @returns {Promise<{primary: Array<Object>, footer: Array<Object>}>} `primary`는 트리(`children` 선택), `footer`는 평면
|
|
*/
|
|
export default defineEventHandler(() => getPublicNavigation())
|