Sha256: f544ab78c9161fa6e6380c7cf2a73f066cc938f25a7c8d103942719453023632
Contents?: true
Size: 566 Bytes
Versions: 46
Compression:
Stored size: 566 Bytes
Contents
import { selectAPIStatus, selectAPIError, selectAPIResponse, } from 'foremanReact/redux/API/APISelectors'; import { STATUS } from 'foremanReact/constants'; import SMART_PROXY_CONTENT_KEY from './SmartProxyContentConstants'; export const selectSmartProxyContent = state => selectAPIResponse(state, SMART_PROXY_CONTENT_KEY) || {}; export const selectSmartProxyContentStatus = state => selectAPIStatus(state, SMART_PROXY_CONTENT_KEY) || STATUS.PENDING; export const selectSmartProxyContentError = state => selectAPIError(state, SMART_PROXY_CONTENT_KEY);
Version data entries
46 entries across 46 versions & 1 rubygems