projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Do not offer to let non-admin users create new keepDisks and nodes.
[arvados.git]
/
apps
/
workbench
/
app
/
models
/
node.rb
1
class Node < ArvadosBase
2
def self.creatable?
3
current_user and current_user.is_admin
4
end
5
def friendly_link_name
6
self.hostname
7
end
8
end