X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/964ab3dd90ff1508efc0c77378cde2b3a4da1029..bd6b334c80cea328a51a8612d40ef16bdd6ab2e2:/services/api/app/controllers/arvados/v1/user_agreements_controller.rb diff --git a/services/api/app/controllers/arvados/v1/user_agreements_controller.rb b/services/api/app/controllers/arvados/v1/user_agreements_controller.rb index 32adde9507..f23cd98c35 100644 --- a/services/api/app/controllers/arvados/v1/user_agreements_controller.rb +++ b/services/api/app/controllers/arvados/v1/user_agreements_controller.rb @@ -17,7 +17,6 @@ class Arvados::V1::UserAgreementsController < ApplicationController # use this installation. @objects = [] else - current_user_uuid = current_user.uuid act_as_system_user do uuids = Link.where("owner_uuid = ? and link_class = ? and name = ? and tail_uuid = ? and head_uuid like ?", system_user_uuid, @@ -25,7 +24,7 @@ class Arvados::V1::UserAgreementsController < ApplicationController 'require', system_user_uuid, Collection.uuid_like_pattern). - collect &:head_uuid + collect(&:head_uuid) @objects = Collection.where('uuid in (?)', uuids) end end