X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a87ad3026e4f7e1cc2e22082a523fa7143388c88..0b4f867ef14af38c07b910643fbe8cc6a93e6bb6:/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 d435ad40ea..5a88003f82 100644 --- a/apps/workbench/app/models/pipeline_instance.rb +++ b/apps/workbench/app/models/pipeline_instance.rb @@ -1,6 +1,10 @@ class PipelineInstance < ArvadosBase attr_accessor :pipeline_template + def self.goes_in_folders? + true + end + def update_job_parameters(new_params) self.components[:steps].each_with_index do |step, i| step[:params].each do |param| @@ -17,8 +21,10 @@ class PipelineInstance < ArvadosBase end end - def attribute_editable?(attr) - attr && (attr.to_sym == :name || (attr.to_sym == :components and self.active == nil)) + def attribute_editable? attr, *args + super && (attr.to_sym == :name || + (attr.to_sym == :components and + (self.state == 'New' || self.state == 'Ready'))) end def attributes_for_display