Files
mixtape/zero.Web.UI/app/api/page-tree.js
T

5 lines
172 B
JavaScript
Raw Normal View History

import { get } from '../helpers/request.ts';
2020-04-06 15:53:32 +02:00
export default {
getChildren: async (parent, active) => await get('pageTree/getChildren', { params: { parent, active } })
2020-04-06 15:53:32 +02:00
};