Sha256: 6aca99c5e528319f9cb90fc038bd4a0025e83544d71ee4fdecbcc05db92256fb

Contents?: true

Size: 1.41 KB

Versions: 13

Compression:

Stored size: 1.41 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)

      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
          errata
          packages
          gpg_keys
          lifecycle_environments
          products
          puppet_modules
          subscriptions
          sync_plans
          host_collections
          katello_tasks
          select_organization
        ),
        :config => {
          'consumerCertRPM' => consumer_cert_rpm,
          'remoteExecutionPresent' => ::Katello.with_remote_execution?,
          'remoteExecutionByDefault' => ::Katello.with_remote_execution? && !Foreman.in_rake?('db:migrate') &&
                                          Setting['remote_execution_by_default']
        }
      )
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
katello-3.1.0.1 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.1.0 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.1.0.rc2.1 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.0.2 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.1.0.rc1 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.0.1 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.0.0 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.0.0.rc7 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.0.0.rc5 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.0.0.rc4 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.0.0.rc3 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.0.0.rc2 engines/bastion_katello/lib/bastion_katello/engine.rb
katello-3.0.0.rc1 engines/bastion_katello/lib/bastion_katello/engine.rb