projects
/
arvados.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
4026: admin user can move a project under another user's home project.
[arvados.git]
/
apps
/
workbench
/
app
/
models
/
authorized_key.rb
diff --git
a/apps/workbench/app/models/authorized_key.rb
b/apps/workbench/app/models/authorized_key.rb
index a56021682cbc953ff145d23acbbef664cf59060c..2d804e1a5345743957b71aa7389eb15ab223312c 100644
(file)
--- a/
apps/workbench/app/models/authorized_key.rb
+++ b/
apps/workbench/app/models/authorized_key.rb
@@
-1,2
+1,9
@@
class AuthorizedKey < ArvadosBase
+ def attribute_editable?(attr, ever=nil)
+ if (attr.to_s == 'authorized_user_uuid') and (not ever)
+ current_user.andand.is_admin
+ else
+ super
+ end
+ end
end