Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #37053 - Add CV/LCE back host list params #922

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions lib/hammer_cli_katello/host_extensions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ module HostExtensions
::HammerCLIForeman::Host::ListCommand.instance_eval do
output do
from :content_facet_attributes do
field :content_view_name, _('Content View')
field :lifecycle_environment_name, _('Lifecycle Environment')
from :content_view do
field :name, _('Content View'), Fields::List
end
from :lifecycle_environment do
field :name, _('Lifecycle environment'), Fields::List
end
from :errata_counts do
field :security, _("Security"), nil, :sets => ['ALL']
field :bugfix, _("Bugfix"), nil, :sets => ['ALL']
Expand Down
Loading