projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'git-commit-debug' of https://github.com/wtsi-hgi/arvados
[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