X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/656769b7b36b38c564f7da64b275d8831d7a442e..e8e0eecb50f527461216631c0e8a1888afecb812:/apps/workbench/app/models/pipeline_instance.rb diff --git a/apps/workbench/app/models/pipeline_instance.rb b/apps/workbench/app/models/pipeline_instance.rb index 5a88003f82..c3b14755f3 100644 --- a/apps/workbench/app/models/pipeline_instance.rb +++ b/apps/workbench/app/models/pipeline_instance.rb @@ -1,10 +1,18 @@ class PipelineInstance < ArvadosBase attr_accessor :pipeline_template - def self.goes_in_folders? + def self.goes_in_projects? true end + def content_summary + begin + PipelineTemplate.find(pipeline_template_uuid).name + rescue + super + end + end + def update_job_parameters(new_params) self.components[:steps].each_with_index do |step, i| step[:params].each do |param|