X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3dccfa028282d8b667a7b447ea061b7eecc8618f..8ae04f9f4d252a99985d7ac047413318d2f1068b:/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 cd0e5cb609..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 @@ -7,5 +11,10 @@ class PipelineTemplate < ArvadosModel api_accessible :user, extend: :common do |t| t.add :name t.add :components + t.add :description + end + + def self.limit_index_columns_read + ["components"] end end