@plone/volto
Version:
Volto
22 lines (19 loc) • 396 B
JavaScript
/**
* 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',
},
};
}