Sha256: 71a24a0395ac6a015cbfbd71915c9bac8b474bd6d7d50bc4d43ac10dead0b9d3
Contents?: true
Size: 973 Bytes
Versions: 7
Compression:
Stored size: 973 Bytes
Contents
class Setting::RhCloud < Setting def self.default_settings return unless ActiveRecord::Base.connection.table_exists?('settings') return unless super [ set('allow_auto_inventory_upload', N_('Allow automatic upload of the host inventory to the Red Hat cloud'), false), set('allow_auto_insights_sync', N_('Allow recommendations synchronization from Red Hat cloud'), false), set('obfuscate_inventory_hostnames', N_('Obfuscate host names sent to Red Hat cloud'), false), set('obfuscate_inventory_ips', N_('Obfuscate ip addresses sent to Red Hat cloud'), false), set('rh_cloud_token', N_('Authentication token to Red Hat cloud services. Used to authenticate requests to cloud APIs'), 'DEFAULT', N_('Red Hat Cloud token'), nil, encrypted: true), set('exclude_installed_packages', N_('Exclude installed packages from Red Hat cloud inventory report'), false), ] end def self.humanized_category N_('RH Cloud') end end
Version data entries
7 entries across 7 versions & 1 rubygems