wagtail/client/src/api/admin.js

23 lines
537 B
JavaScript
Raw Normal View History

import { get } from '../api/client';
import { ADMIN_API } from '../config/wagtail';
export const getChildPages = (id, options = {}) => {
let url = `${ADMIN_API.PAGES}?child_of=${id}`;
if (options.fields) {
url += `&fields=${global.encodeURIComponent(options.fields.join(','))}`;
}
// Only show pages that have children for now
url += `&has_children=1`;
return get(url).then(res => res.body);
};
export const getPage = (id) => {
const url = `${ADMIN_API.PAGES}${id}/`;
return get(url).then(res => res.body);
};