X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/eae48c31bb338689ec67fbc6a14a2e0b1fb5e3b6..4f4f6f5fe9367d5cd6c57070fd8a223efc87cb21:/services/api/app/controllers/arvados/v1/collections_controller.rb diff --git a/services/api/app/controllers/arvados/v1/collections_controller.rb b/services/api/app/controllers/arvados/v1/collections_controller.rb index 922cf7dac1..81accd8c56 100644 --- a/services/api/app/controllers/arvados/v1/collections_controller.rb +++ b/services/api/app/controllers/arvados/v1/collections_controller.rb @@ -31,6 +31,8 @@ class Arvados::V1::CollectionsController < ApplicationController def show if @object.is_a? Collection + # Omit unsigned_manifest_text + @select ||= model_class.selectable_attributes - ["unsigned_manifest_text"] super else send_json @object @@ -184,8 +186,8 @@ class Arvados::V1::CollectionsController < ApplicationController def load_limit_offset_order_params *args super if action_name == 'index' - # Omit manifest_text from index results unless expressly selected. - @select ||= model_class.selectable_attributes - ["manifest_text"] + # Omit manifest_text and unsigned_manifest_text from index results unless expressly selected. + @select ||= model_class.selectable_attributes - ["manifest_text", "unsigned_manifest_text"] end end end