Sha256: 15a127cd006d91ab913c21e29f7b7f91ee43825775b936f8a48ccf1d7c92bf7c

Contents?: true

Size: 548 Bytes

Versions: 68

Compression:

Stored size: 548 Bytes

Contents

// Activation Keys helpers

export const validateAKField = (hostGroupId, userKeys, hgKeys) => {
  if (hostGroupId === '') {
    return (userKeys?.length > 0 ? 'success' : 'error');
  }

  if (userKeys === undefined && hgKeys === undefined) {
    return ('default');
  }

  return ((userKeys?.length > 0 || hgKeys?.length > 0) ? 'success' : 'error');
};

export const akHasValidValue = (hostGroupId, userKeys, hgKeys) => {
  if (hostGroupId === '') {
    return (userKeys?.length > 0);
  }

  return (hgKeys?.length > 0 || userKeys?.length > 0);
};

Version data entries

68 entries across 68 versions & 1 rubygems

Version Path
katello-4.10.0 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.9.2 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.10.0.rc2 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.10.0.rc1 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.8.4 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.9.1 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.8.3 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.9.0 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.7.6 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.8.2 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.9.0.rc2 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.9.0.rc1 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.8.1 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.7.5 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.8.0 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.8.0.rc2 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.7.4 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.8.0.rc1 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.7.3 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js
katello-4.7.2 webpack/components/extensions/RegistrationCommands/RegistrationCommandsPageHelpers.js