projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' into 9836-workflows-doc
[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)
15
ContainerWorkUnit.new(self, label)
16
end
17
end