Skip to content

Commit

Permalink
Refs #36846 - change descriptionFormat to snake case
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylenz committed Jan 11, 2024
1 parent 3291b41 commit ef24356
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const baseParams = ({
job_invocation: {
feature,
inputs,
descriptionFormat,
description_format: descriptionFormat,
search_query: `name ^ (${hostname})`,
},
});
Expand All @@ -41,7 +41,7 @@ const katelloPackageInstallBySearchParams = ({ hostname, search, descriptionForm
hostname,
inputs: { [PACKAGE_SEARCH_QUERY]: search },
feature: REX_FEATURES.KATELLO_PACKAGE_INSTALL_BY_SEARCH,
description_format: descriptionFormat,
descriptionFormat,
});

const katelloPackageRemoveParams = ({ hostname, packageName }) =>
Expand All @@ -56,7 +56,7 @@ const katelloPackagesRemoveParams = ({ hostname, search, descriptionFormat }) =>
hostname,
inputs: { [PACKAGES_SEARCH_QUERY]: search },
feature: REX_FEATURES.KATELLO_PACKAGES_REMOVE_BY_SEARCH,
description_format: descriptionFormat,
descriptionFormat,
});

const katelloPackageUpdateParams = ({ hostname, packageName }) =>
Expand All @@ -73,7 +73,7 @@ const katelloPackagesUpdateParams = ({
feature: REX_FEATURES.KATELLO_PACKAGES_UPDATE_BY_SEARCH,
inputs: { [PACKAGES_SEARCH_QUERY]: search, [SELECTED_UPDATE_VERSIONS]: versions },
search_query: `name ^ (${hostname})`,
description_format: descriptionFormat,
descriptionFormat,
},
});

Expand Down

0 comments on commit ef24356

Please sign in to comment.