X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/964ab3dd90ff1508efc0c77378cde2b3a4da1029..8f9ba1d6405c397c40de94e155cea0c84120ff0c:/services/api/app/models/pipeline_template.rb diff --git a/services/api/app/models/pipeline_template.rb b/services/api/app/models/pipeline_template.rb index b016ce1175..b19a2b0f7c 100644 --- a/services/api/app/models/pipeline_template.rb +++ b/services/api/app/models/pipeline_template.rb @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class PipelineTemplate < ArvadosModel include HasUuid include KindAndEtag @@ -9,4 +13,8 @@ class PipelineTemplate < ArvadosModel t.add :components t.add :description end + + def self.limit_index_columns_read + ["components"] + end end