Project

General

Profile

Download (284 Bytes) Statistics
| Branch: | Tag: | Revision:
module FogExtensions
module Vsphere
module Folder
extend ActiveSupport::Concern
def to_label
if parent and parent != datacenter
"#{parent} / #{name}"
else
name == "vm" ? "VM Folder" : name
end
end
end

end
end
(1-1/2)