Sha256: 140d2765a87a93e560892422b464e03b00e0d2aa7edde89558760e021c0a789b

Contents?: true

Size: 647 Bytes

Versions: 3

Compression:

Stored size: 647 Bytes

Contents

import React from 'react';
import { translate as __ } from 'foremanReact/common/I18n';
import AutoUploadSwitcher from '../AutoUploadSwitcher';
import HostObfuscationSwitcher from '../HostObfuscationSwitcher';
import ExcludePackagesSwitcher from '../ExcludePackagesSwitcher';
import IpsObfuscationSwitcher from '../IpsObfuscationSwitcher';
import './InventorySettings.scss';

const InventorySettings = () => (
  <div className="inventory-settings">
    <h3>{__('Settings')}</h3>
    <AutoUploadSwitcher />
    <ExcludePackagesSwitcher />
    <HostObfuscationSwitcher />
    <IpsObfuscationSwitcher />
  </div>
);

export default InventorySettings;

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
foreman_rh_cloud-3.0.17 webpack/ForemanInventoryUpload/Components/InventorySettings/InventorySettings.js
foreman_rh_cloud-3.0.16 webpack/ForemanInventoryUpload/Components/InventorySettings/InventorySettings.js
foreman_rh_cloud-3.0.15 webpack/ForemanInventoryUpload/Components/InventorySettings/InventorySettings.js