9587: expose untrash api
[arvados.git] / apps / workbench / app / models / node.rb
index e67dd9ea591df543b50d0f0684bdd936516bfdf8..8bf98c6decb3865054c6339105c688f2ec89fcf4 100644 (file)
@@ -1,3 +1,8 @@
 class Node < ArvadosBase
-  attr_accessor :object
+  def self.creatable?
+    false
+  end
+  def friendly_link_name lookup=nil
+    (hostname && !hostname.empty?) ? hostname : uuid
+  end
 end