20259: Add documentation for banner and tooltip features
[arvados.git] / apps / workbench / app / models / node.rb
index 048ac59a0a94360cc50e7f4bd1ee4cb9d02e908c..785cc4fcfe5279dcc31288ab6951de498b328817 100644 (file)
@@ -1,6 +1,12 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
 class Node < ArvadosBase
-  attr_accessor :object
-  def friendly_link_name
-    self.hostname
+  def self.creatable?
+    false
+  end
+  def friendly_link_name lookup=nil
+    (hostname && !hostname.empty?) ? hostname : uuid
   end
 end