design-comuni-plone-theme
Version:
Volto Theme for Italia design guidelines
69 lines (65 loc) • 1.73 kB
JavaScript
/**
* Add your actions here.
* @module actions
* @example
* import {
* searchContent,
* } from './search/search';
*
* export {
* searchContent,
* };
*/
import { getSearchFilters, GET_SEARCH_FILTERS } from './getSearchFilters';
import { getSearchResults, GET_SEARCH_RESULTS } from './getSearchResults';
import { getCalendarResults, GET_CALENDAR_RESULTS } from './calendarSearch';
import { resetQuerystringResults } from './resetQuerystringResults';
import { setOriginalQuery, ORIGINAL_QUERY } from './setOriginalQuery';
import {
getCalendarDayResults,
GET_CALENDAR_DAY_RESULTS,
} from './calendarDaySearch';
import {
getAmministrazioneTrasparenteTree,
GET_AMMINISTRAZIONE_TRASPARENTE,
} from './getAmministrazioneTrasparenteTree';
import {
getDettagliProcedimento,
GET_DETTAGLI_PROCEDIMENTO,
} from './getDettagliProcedimento';
import {
getModulisticaItems,
resetModulisticaItems,
GET_MODULISTICA_ITEMS,
RESET_MODULISTICA_ITEMS,
} from './getModulisticaItems';
import {
getSearchBandiFilters,
GET_SEARCH_BANDI_FILTERS,
} from './getSearchBandiFilters';
import { getCTSchema, GET_CT_SCHEMA } from './getCTSchema';
export {
getSearchFilters,
GET_SEARCH_FILTERS,
getSearchResults,
GET_SEARCH_RESULTS,
getCalendarResults,
GET_CALENDAR_RESULTS,
getCalendarDayResults,
GET_CALENDAR_DAY_RESULTS,
getAmministrazioneTrasparenteTree,
GET_AMMINISTRAZIONE_TRASPARENTE,
getDettagliProcedimento,
GET_DETTAGLI_PROCEDIMENTO,
getModulisticaItems,
GET_MODULISTICA_ITEMS,
resetModulisticaItems,
RESET_MODULISTICA_ITEMS,
setOriginalQuery,
ORIGINAL_QUERY,
getSearchBandiFilters,
GET_SEARCH_BANDI_FILTERS,
resetQuerystringResults,
getCTSchema,
GET_CT_SCHEMA,
};