9372: container display
[arvados.git] / apps / workbench / app / models / work_unit.rb
index 5bac42ba2ff53c9620ae0ae3e9b81768d34c4396..1c2d02fa96edd5e2c021f5f8d5041930b397afe3 100644 (file)
@@ -155,4 +155,28 @@ class WorkUnit
   def is_failed?
     # is this work unit in failed state?
   end
+
+  def command
+    # command to execute
+  end
+
+  def cwd
+    # initial workind directory
+  end
+
+  def environment
+    # environment variables
+  end
+
+  def mounts
+    # mounts
+  end
+
+  def output_path
+    # path to a directory or file to save output
+  end
+
+  def container_uuid
+    # container_uuid of a container_request
+  end
 end