Sha256: 9891961af4cb3f967adac7dbd96196f49971cfd8563fa36606cbd7d40a5db775
Contents?: true
Size: 557 Bytes
Versions: 77
Compression:
Stored size: 557 Bytes
Contents
import { selectAPIStatus, selectAPIError, selectAPIResponse, } from 'foremanReact/redux/API/APISelectors'; import { STATUS } from 'foremanReact/constants'; import { ENVIRONMENT_PATHS_KEY } from './EnvironmentPathConstants'; export const selectEnvironmentPaths = state => selectAPIResponse(state, ENVIRONMENT_PATHS_KEY) || {}; export const selectEnvironmentPathsStatus = state => selectAPIStatus(state, ENVIRONMENT_PATHS_KEY) || STATUS.PENDING; export const selectEnvironmentPathsError = state => selectAPIError(state, ENVIRONMENT_PATHS_KEY);
Version data entries
77 entries across 77 versions & 1 rubygems