UNPKG

@plone/volto

Version:
22 lines (19 loc) 396 B
/** * Querystring actions. * @module actions/querystring/querystring */ import { GET_QUERYSTRING } from '@plone/volto/constants/ActionTypes'; /** * Get querystring. * @function getQuerystring * @returns {Object} Get querystring action. */ export function getQuerystring() { return { type: GET_QUERYSTRING, request: { op: 'get', path: '/@querystring', }, }; }