Working on javascript magic to resize svg div so scrolling works nicely. Seems to...
[arvados.git] / apps / workbench / app / models / node.rb
index e67dd9ea591df543b50d0f0684bdd936516bfdf8..0a324ff5139bb88d5fcd77a65c3b638616182bdd 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
+    self.hostname
+  end
 end