Merge branch 'master' into 3889-functional-testing
[arvados.git] / apps / workbench / app / models / node.rb
index e67dd9ea591df543b50d0f0684bdd936516bfdf8..6518047b8d161df66605bb5f34ad61132cd3bb8c 100644 (file)
@@ -1,3 +1,8 @@
 class Node < ArvadosBase
-  attr_accessor :object
+  def self.creatable?
+    current_user and current_user.is_admin
+  end
+  def friendly_link_name
+    (hostname && !hostname.empty?) ? hostname : uuid
+  end
 end