Sha256: bf8c39f255b2939538954f518001af66c794e451b102d1fa7c21f1928cac5dc8
Contents?: true
Size: 494 Bytes
Versions: 18
Compression:
Stored size: 494 Bytes
Contents
import { selectAPIStatus, selectAPIError, selectAPIResponse, } from 'foremanReact/redux/API/APISelectors'; import { STATUS } from 'foremanReact/constants'; import { HOST_DEBS_KEY } from './HostDebsConstants'; export const selectHostDebs = state => selectAPIResponse(state, HOST_DEBS_KEY) || {}; export const selectHostDebsStatus = state => selectAPIStatus(state, HOST_DEBS_KEY) || STATUS.PENDING; export const selectHostDebsError = state => selectAPIError(state, HOST_DEBS_KEY);
Version data entries
18 entries across 18 versions & 1 rubygems