projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add 'tools/arvbox/' from commit 'd3d368758db1f4a9fa5b89f77b5ee61d68ef5b72'
[arvados.git]
/
services
/
api
/
app
/
models
/
pipeline_template.rb
1
class PipelineTemplate < ArvadosModel
2
include HasUuid
3
include KindAndEtag
4
include CommonApiTemplate
5
serialize :components, Hash
6
7
api_accessible :user, extend: :common do |t|
8
t.add :name
9
t.add :components
10
t.add :description
11
end
12
end