Actions
Bug #31996
closedRemove deprecated API params
Description
The toolbelt tool for deprecation tracking doesn't find deprecated API params marked with :deprecated => true. (It only finds deprecations where ::Foreman::Deprecation.api_deprecation_warning or Foreman::Deprecation.deprecation_warning is called.)
Therefore, this issue is being raised manually to remind us to remove these deprecated API params in Katello 4.1:
app/controllers/katello/api/v2/errata_controller.rb#L65
api :GET, "/content_view_versions/:id/available_errata", N_("Return errata that can be added to the Content View Version via an Incremental Update. Will be removed in Katello 4.1."), :deprecated => true
app/controllers/katello/api/v2/host_errata_controller.rb#L54
param :errata_ids, Array, :desc => N_("List of Errata ids to install. Will be removed in Katello 4.1."), :required => false, :deprecated => true
Actions