ManageIQ/manageiq-ui-classic

View on GitHub
app/presenters/tree_builder_automation_manager_configured_systems.rb

Summary

Maintainability
A
0 mins
Test Coverage
class TreeBuilderAutomationManagerConfiguredSystems < TreeBuilderConfiguredSystems
  def initialize(*args)
    @root_class = 'ManageIQ::Providers::AnsibleTower::AutomationManager::ConfiguredSystem'
    super(*args)
  end

  private

  def root_options
    {
      :text    => t = _("All Ansible Tower Configured Systems"),
      :tooltip => t
    }
  end

  def configured_systems
    {
      :id   => "csa",
      :text => t = _("Ansible Tower Configured Systems"),
      :icon => "pficon pficon-folder-close",
      :tip  => t
    }
  end
end