X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3ba5aa15ea0156a4fce63dcb43b7f972b4c760df..2b0a7c3f635bc2340956d670c6aeda417dd11cec:/apps/workbench/app/models/user.rb diff --git a/apps/workbench/app/models/user.rb b/apps/workbench/app/models/user.rb index c1656bde69..87ea5faefa 100644 --- a/apps/workbench/app/models/user.rb +++ b/apps/workbench/app/models/user.rb @@ -27,12 +27,16 @@ class User < ArvadosBase {})) end + def contents params={} + Group.contents params.merge(uuid: self.uuid) + end + def attributes_for_display super.reject { |k,v| %w(owner_uuid default_owner_uuid identity_url prefs).index k } end - def attribute_editable?(attr) - (not (self.uuid.andand.match(/000000000000000$/) and self.is_admin)) and super(attr) + def attribute_editable? attr, *args + (not (self.uuid.andand.match(/000000000000000$/) and self.is_admin)) and super end def friendly_link_name @@ -49,4 +53,10 @@ class User < ArvadosBase arvados_api_client.api(self, "/setup", params) end + def update_profile params + self.private_reload(arvados_api_client.api(self.class, + "/#{self.uuid}/profile", + params)) + end + end