Sha256: 19c375c8f6e28f398d3366f01e3fc04385d8febe2b6258101295910bc4db777b
Contents?: true
Size: 542 Bytes
Versions: 71
Compression:
Stored size: 542 Bytes
Contents
import { selectAPIStatus, selectAPIError, selectAPIResponse, } from 'foremanReact/redux/API/APISelectors'; import { STATUS } from 'foremanReact/constants'; import { REPOSITORY_SETS_KEY } from './RepositorySetsConstants'; export const selectRepositorySets = state => selectAPIResponse(state, REPOSITORY_SETS_KEY) || {}; export const selectRepositorySetsStatus = state => selectAPIStatus(state, REPOSITORY_SETS_KEY) || STATUS.PENDING; export const selectRepositorySetsError = state => selectAPIError(state, REPOSITORY_SETS_KEY);
Version data entries
71 entries across 71 versions & 1 rubygems