projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
2872: Fix attribute_editable? to play nicer with group ownership. refs #2872
[arvados.git]
/
apps
/
workbench
/
app
/
models
/
job.rb
1
class Job < ArvadosBase
2
def self.goes_in_folders?
3
true
4
end
5
6
def attribute_editable? attr, *args
7
false
8
end
9
10
def self.creatable?
11
false
12
end
13
end