8784: Fix test for latest firefox.
[arvados.git] / apps / workbench / app / models / container_request.rb
1 class ContainerRequest < ArvadosBase
2   def self.creatable?
3     false
4   end
5
6   def textile_attributes
7     [ 'description' ]
8   end
9
10   def self.goes_in_projects?
11     true
12   end
13
14   def work_unit(label=nil, child_objects=nil)
15     ContainerWorkUnit.new(self, label, self.uuid, child_objects=child_objects)
16   end
17 end