From f3dba82d5f35f679c0f7906cf07e211a716b6785 Mon Sep 17 00:00:00 2001 From: Nagoor Shaik Date: Thu, 15 Jun 2023 13:08:17 +0530 Subject: [PATCH] Fixes #36506 - allow installable errata counts in safe mode --- app/models/katello/host/content_facet.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/models/katello/host/content_facet.rb b/app/models/katello/host/content_facet.rb index 50b542a35f7..d60dcec3a5b 100644 --- a/app/models/katello/host/content_facet.rb +++ b/app/models/katello/host/content_facet.rb @@ -375,7 +375,8 @@ def self.inherited_attributes(hostgroup, facet_attributes) class Jail < ::Safemode::Jail allow :applicable_deb_count, :applicable_module_stream_count, :applicable_rpm_count, :content_source, :content_source_id, :content_source_name, :errata_counts, :id, :kickstart_repository, :kickstart_repository_id, :kickstart_repository_name, - :upgradable_deb_count, :upgradable_module_stream_count, :upgradable_rpm_count, :uuid + :upgradable_deb_count, :upgradable_module_stream_count, :upgradable_rpm_count, :uuid, + :installable_security_errata_count, :installable_bugfix_errata_count, :installable_enhancement_errata_count end end end