Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

delegate name attribute to parent_manager #16067

Merged
merged 1 commit into from
Sep 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions app/models/manageiq/providers/monitoring_manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,9 @@ def self.ems_type
def self.description
"Monitoring Manager".freeze
end

def name
"#{parent_manager.try(:name)} Monitoring Manager"
end
end
end
4 changes: 4 additions & 0 deletions app/models/manageiq/providers/network_manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,9 @@ def self.supported_types_and_descriptions_hash
end
end
end

def name
"#{parent_manager.try(:name)} Network Manager"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ def description
@description ||= "Cinder ".freeze
end

def name
"#{parent_manager.try(:name)} Cinder Manager"
end

def supports_api_version?
true
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ def description
@description ||= "Swift ".freeze
end

def name
"#{parent_manager.try(:name)} Swift Manager"
end

def supports_api_version?
true
end
Expand Down