X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/92b530ffbb5022192f00977183e591ae81240347..8d37eefb14b5bea1044063affa6e299d8ca92c37:/apps/workbench/app/models/work_unit.rb diff --git a/apps/workbench/app/models/work_unit.rb b/apps/workbench/app/models/work_unit.rb index 1c2d02fa96..7373bc2423 100644 --- a/apps/workbench/app/models/work_unit.rb +++ b/apps/workbench/app/models/work_unit.rb @@ -17,6 +17,10 @@ class WorkUnit # returns uuid of the user who modified this work unit most recently end + def owner_uuid + # returns uuid of the owner of this work unit + end + def created_at # returns created_at timestamp end @@ -179,4 +183,20 @@ class WorkUnit def container_uuid # container_uuid of a container_request end + + def log_object_uuids + # object uuids for live log + end + + def live_log_lines(limit) + # fetch log entries from logs table for @proxied + end + + def render_log + # return partial and locals to be rendered + end + + def template_uuid + # return the uuid of this work unit's template, if one exists + end end