Sha256: 5e46f42b07b51b89b069245ae2e8ca68e2a4b20c33e8329eb4ad1020a7a7db6e
Contents?: true
Size: 486 Bytes
Versions: 160
Compression:
Stored size: 486 Bytes
Contents
import { ajaxRequestAction } from 'foremanReact/redux/actions/common'; import { SYSTEM_STATUSES_FAILURE, SYSTEM_STATUSES_SUCCESS, SYSTEM_STATUSES_REQUEST, } from './SystemStatusesConsts'; // eslint-disable-next-line import/prefer-default-export export const getSystemStatuses = url => dispatch => ajaxRequestAction({ dispatch, requestAction: SYSTEM_STATUSES_REQUEST, successAction: SYSTEM_STATUSES_SUCCESS, failedAction: SYSTEM_STATUSES_FAILURE, url, });
Version data entries
160 entries across 160 versions & 1 rubygems