@plone/volto
Version:
Volto
17 lines (15 loc) • 313 B
JavaScript
import { GET_NAVROOT } from '@plone/volto/constants/ActionTypes';
/**
* Get the navigation root information.
* @function getNavroot
* @returns {Object} navroot
*/
export function getNavroot(url) {
return {
type: GET_NAVROOT,
request: {
op: 'get',
path: `${url}/@navroot`,
},
};
}