]> git.arvados.org - arvados.git/blob - apps/workbench/app/models/container.rb
15954: Merge branch 'master'
[arvados.git] / apps / workbench / app / models / container.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 class Container < ArvadosBase
6   def self.creatable?
7     false
8   end
9
10   def work_unit(label=nil, child_objects=nil)
11     ContainerWorkUnit.new(self, label, self.uuid, child_objects=child_objects)
12   end
13 end