Sha256: 428a8411a11a0ee66b5e1d1f5dd2bde8b27b305b062b9fb399cde5f146dc3e8b
Contents?: true
Size: 1.63 KB
Versions: 8
Compression:
Stored size: 1.63 KB
Contents
module BastionKatello class Engine < ::Rails::Engine isolate_namespace BastionKatello initializer 'bastion.assets_dispatcher', :before => :build_middleware_stack do |app| app.middleware.use ::ActionDispatch::Static, "#{BastionKatello::Engine.root}/app/assets/javascripts/bastion_katello" end config.to_prepare do consumer_cert_rpm = 'katello-ca-consumer-latest.noarch.rpm' consumer_cert_rpm = SETTINGS[:katello][:consumer_cert_rpm] if SETTINGS.key?(:katello) db_migrated = ActiveRecord::Base.connection.table_exists?(Setting.table_name) Bastion.register_plugin( :name => 'bastion_katello', :javascript => 'bastion_katello/bastion_katello', :stylesheet => 'bastion_katello/bastion_katello', :pages => %w( activation_keys content_hosts content_views docker_tags ostree_branches errata packages gpg_keys lifecycle_environments products puppet_modules subscriptions sync_plans host_collections katello_tasks select_organization ), :config => { 'consumerCertRPM' => consumer_cert_rpm, 'defaultDownloadPolicy' => !Foreman.in_rake? && db_migrated && Setting['default_download_policy'], 'remoteExecutionPresent' => ::Katello.with_remote_execution?, 'remoteExecutionByDefault' => ::Katello.with_remote_execution? && !Foreman.in_rake?('db:migrate') && db_migrated && Setting['remote_execution_by_default'] } ) end end end
Version data entries
8 entries across 8 versions & 1 rubygems