Sha256: ec0e84e37099d090ff1a8552459047689fd751d75a67c590cfc1c8a743a96c7f

Contents?: true

Size: 651 Bytes

Versions: 30

Compression:

Stored size: 651 Bytes

Contents

import { API_OPERATIONS, get } from 'foremanReact/redux/API';
import api, { foremanApi, orgId } from '../../services/api';
import SMART_PROXY_CONTENT_KEY, { SMART_PROXY_KEY } from './SmartProxyContentConstants';

const getSmartProxyContent = ({ smartProxyId }) => get({
  type: API_OPERATIONS.GET,
  key: SMART_PROXY_CONTENT_KEY,
  url: api.getApiUrl(`/capsules/${smartProxyId}/content/sync?${orgId()}`),
});

export const getSmartProxies = () => get({
  type: API_OPERATIONS.GET,
  key: SMART_PROXY_KEY,
  url: foremanApi.getApiUrl('/smart_proxies'),
  params: { organization_id: orgId(), per_page: 'all' },
});

export default getSmartProxyContent;

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
katello-4.10.0 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.9.2 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.10.0.rc2 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.10.0.rc1 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.8.4 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.9.1 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.8.3 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.9.0 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.7.6 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.8.2 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.9.0.rc2 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.9.0.rc1 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.8.1 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.7.5 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.8.0 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.8.0.rc2 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.7.4 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.8.0.rc1 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.7.3 webpack/scenes/SmartProxy/SmartProxyContentActions.js
katello-4.7.2 webpack/scenes/SmartProxy/SmartProxyContentActions.js