Foreman::Plugin.register :katello do requires_foreman '>= 1.9' sub_menu :top_menu, :content_menu, :caption => N_('Content'), :after => :monitor_menu do menu :top_menu, :environments, :caption => N_('Lifecycle Environments'), :url => '/lifecycle_environments', :url_hash => {:controller => 'katello/api/v2/environments', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false menu :top_menu, :red_hat_subscriptions, :caption => N_('Red Hat Subscriptions'), :url => '/subscriptions', :url_hash => {:controller => 'katello/api/v2/subscriptions', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false menu :top_menu, :activation_keys, :url => '/activation_keys', :url_hash => {:controller => 'katello/api/v2/activation_keys', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false divider :top_menu, :parent => :content_menu menu :top_menu, :redhat_provider, :caption => N_('Red Hat Repositories'), :url_hash => {:controller => 'katello/providers', :action => 'redhat_provider'}, :engine => Katello::Engine, :turbolinks => false menu :top_menu, :products, :caption => N_('Products'), :url => '/products', :url_hash => {:controller => 'katello/api/v2/products', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false menu :top_menu, :gpg_keys, :caption => N_('GPG keys'), :url => '/gpg_keys', :url_hash => {:controller => 'katello/api/v2/gpg_keys', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false divider :top_menu, :parent => :content_menu menu :top_menu, :sync_status, :caption => N_('Sync Status'), :url_hash => {:controller => 'katello/sync_management', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false menu :top_menu, :sync_plans, :caption => N_('Sync Plans'), :url => '/sync_plans', :url_hash => {:controller => 'katello/api/v2/sync_plans', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false divider :top_menu, :parent => :content_menu menu :top_menu, :content_views, :caption => N_('Content Views'), :url => '/content_views', :url_hash => {:controller => 'katello/api/v2/content_views', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false divider :top_menu, :parent => :content_menu menu :top_menu, :errata, :caption => N_('Errata'), :url => '/errata', :url_hash => {:controller => 'katello/api/v2/errata', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false menu :top_menu, :packages, :caption => N_('Packages'), :url => '/packages', :url_hash => {:controller => 'katello/api/v2/packages', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false menu :top_menu, :puppet_modules, :caption => N_('Puppet Modules'), :url => '/puppet_modules', :url_hash => {:controller => 'katello/api/v2/puppet_modules', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false menu :top_menu, :docker_tags, :caption => N_('Docker Tags'), :url => '/docker_tags', :url_hash => {:controller => 'katello/api/v2/docker_tags', :action => 'index'}, :engine => Katello::Engine, :turbolinks => false end menu :top_menu, :content_hosts, :caption => N_('Content Hosts'), :url => '/content_hosts', :url_hash => {:controller => 'katello/api/v2/systems', :action => 'index'}, :engine => Katello::Engine, :parent => :hosts_menu, :after => :hosts, :turbolinks => false menu :top_menu, :host_collections, :caption => N_('Host Collections'), :url => '/host_collections', :url_hash => {:controller => 'katello/api/v2/host_collections', :action => 'index'}, :engine => Katello::Engine, :parent => :hosts_menu, :after => :content_hosts, :turbolinks => false allowed_template_helpers :subscription_manager_configuration_url search_path_override("Katello") do |resource| "/#{Katello::Util::Model.model_to_controller_path(resource)}/auto_complete_search" end apipie_documented_controllers ["#{Katello::Engine.root}/app/controllers/katello/api/v2/*.rb"] apipie_ignored_controllers %w(::Api::V2::OrganizationsController) logger :glue, :enabled => true logger :pulp_rest, :enabled => true logger :cp_rest, :enabled => true logger :cp_proxy, :enabled => true logger :action, :enabled => true logger :tire_rest, :enabled => false logger :manifest_import_logger, :enabled => true widget 'errata_widget', :name => 'Errata Widget', :sizey => 1, :sizex => 6 widget 'content_views_widget', :name => 'Content Views Widget', :sizey => 1, :sizex => 6 widget 'sync_widget', :name => 'Sync Widget', :sizey => 1, :sizex => 6 widget 'subscription_widget', :name => 'Content Host Subscription Status Widget', :sizey => 1, :sizex => 6 widget 'subscription_status_widget', :name => 'Subscription Status Widget', :sizey => 1, :sizex => 6 widget 'host_collection_widget', :name => 'Host Collection Widget', :sizey => 1, :sizex => 6 end