X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d4973e18ed92e3bcc0cb8b2020649148240ce9c0..f308830adff32b6cccd7e0720dec20c42a1bed60:/apps/workbench/app/models/pipeline_instance_work_unit.rb diff --git a/apps/workbench/app/models/pipeline_instance_work_unit.rb b/apps/workbench/app/models/pipeline_instance_work_unit.rb index 889fa1a7f3..517dbc7a35 100644 --- a/apps/workbench/app/models/pipeline_instance_work_unit.rb +++ b/apps/workbench/app/models/pipeline_instance_work_unit.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class PipelineInstanceWorkUnit < ProxyWorkUnit def children return @my_children if @my_children @@ -18,10 +22,10 @@ class PipelineInstanceWorkUnit < ProxyWorkUnit if job[:uuid] and jobs[job[:uuid]] items << jobs[job[:uuid]].work_unit(name) else - items << JobWorkUnit.new(job, name) + items << JobWorkUnit.new(job, name, uuid) end else - items << JobWorkUnit.new(c, name) + items << JobWorkUnit.new(c, name, uuid) end else @unreadable_children = true @@ -51,4 +55,8 @@ class PipelineInstanceWorkUnit < ProxyWorkUnit def title "pipeline" end + + def template_uuid + get(:pipeline_template_uuid) + end end