| 1 2 3 4 5 6 7 8 9 10 11 | 2x 1x | import { REQUEST_NAVCOL } from '../actionTypes';
import api from '../Api';
export function fetchNavigationCollection(requestParams, pageletName, Api = api) {
return { type: REQUEST_NAVCOL, requestParams, pageletName, Api };
}
export function searchNavigationCollection(searchString, maxResults) {
return { type: 'INPUT_CHANGED', searchString, maxResults };
}
|