X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f4ca9ad94a6bb006d1f3c7ba207837f1736d1247..575b2f04b80a8bb2cf5ab61ce80a94d5fe017aa3:/apps/workbench/app/models/container_request.rb diff --git a/apps/workbench/app/models/container_request.rb b/apps/workbench/app/models/container_request.rb index 73609c577e..aae712b343 100644 --- a/apps/workbench/app/models/container_request.rb +++ b/apps/workbench/app/models/container_request.rb @@ -1,3 +1,17 @@ class ContainerRequest < ArvadosBase + def self.creatable? + false + end + def textile_attributes + [ 'description' ] + end + + def self.goes_in_projects? + true + end + + def work_unit(label=nil) + ContainerWorkUnit.new(self, label, self.uuid) + end end