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

5 lines
188 B
JavaScript
Raw Normal View History

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