X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/ce6f582e7e1d5b927aeee0aab3def7ab8a5cae4f..8ca0b1449607ded51e908481cc4660c20f43a777:/apps/workbench/app/models/container.rb?ds=sidebyside diff --git a/apps/workbench/app/models/container.rb b/apps/workbench/app/models/container.rb index bee82ef73b..8de28ae41f 100644 --- a/apps/workbench/app/models/container.rb +++ b/apps/workbench/app/models/container.rb @@ -1,3 +1,13 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class Container < ArvadosBase + def self.creatable? + false + end + def work_unit(label=nil, child_objects=nil) + ContainerWorkUnit.new(self, label, self.uuid, child_objects=child_objects) + end end