design-comuni-plone-theme
Version:
Volto Theme for Italia design guidelines
18 lines (16 loc) • 417 B
JavaScript
export const GET_SEARCH_BANDI_FILTERS = 'GET_SEARCH_BANDI_FILTERS';
/**
* Get search bandi filters.
* @function getSearchBandiFilters
* @returns {Object} Get search bandi filters action.
*/
export function getSearchBandiFilters(path = '') {
let p = path === '/' ? '' : path;
return {
type: GET_SEARCH_BANDI_FILTERS,
request: {
op: 'get',
path: p + '/@bandi-search-filters',
},
};
}