X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b20cc78fe133ad073edaa1f07effa90297015e99..35c9bd48e78ba49d0ecdb5ea229d1b2f75157f79:/apps/workbench/app/models/user.rb?ds=sidebyside diff --git a/apps/workbench/app/models/user.rb b/apps/workbench/app/models/user.rb index af1922adff..8df16f29a4 100644 --- a/apps/workbench/app/models/user.rb +++ b/apps/workbench/app/models/user.rb @@ -35,11 +35,12 @@ class User < ArvadosBase super.reject { |k,v| %w(owner_uuid default_owner_uuid identity_url prefs).index k } end - def attribute_editable? attr, *args - (not (self.uuid.andand.match(/000000000000000$/) and self.is_admin)) and super + def attribute_editable?(attr, ever=nil) + (ever or not (self.uuid.andand.match(/000000000000000$/) and + self.is_admin)) and super end - def friendly_link_name + def friendly_link_name lookup=nil [self.first_name, self.last_name].compact.join ' ' end @@ -53,4 +54,17 @@ 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 + + def deletable? + false + end + + def self.creatable? + current_user and current_user.is_admin + end end