Sha256: 915e8bebebe66f92db68f2ef2f9ae34d466b1162e793dc5d2a34a37b78ccb23f
Contents?: true
Size: 642 Bytes
Versions: 66
Compression:
Stored size: 642 Bytes
Contents
import { selectAPIStatus, selectAPIError, selectAPIResponse, } from 'foremanReact/redux/API/APISelectors'; import { STATUS } from 'foremanReact/constants'; import { HOST_YUM_INSTALLABLE_PACKAGES_KEY } from './YumInstallablePackagesConstants'; export const selectHostYumInstallablePackages = state => selectAPIResponse(state, HOST_YUM_INSTALLABLE_PACKAGES_KEY) || {}; export const selectHostYumInstallablePackagesStatus = state => selectAPIStatus(state, HOST_YUM_INSTALLABLE_PACKAGES_KEY) || STATUS.PENDING; export const selectHostYumInstallablePackagesError = state => selectAPIError(state, HOST_YUM_INSTALLABLE_PACKAGES_KEY);
Version data entries
66 entries across 66 versions & 1 rubygems