X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d0bf7a1ff103285e54433d3bcb67c2138b534542..80ada0673ac37cf1d3b70918a214f2ade484ec45:/apps/workbench/app/models/user.rb diff --git a/apps/workbench/app/models/user.rb b/apps/workbench/app/models/user.rb index 6c889e602d..9c914776a2 100644 --- a/apps/workbench/app/models/user.rb +++ b/apps/workbench/app/models/user.rb @@ -6,15 +6,15 @@ class User < ArvadosBase end def self.current - res = $arvados_api_client.api self, '/current' - $arvados_api_client.unpack_api_response(res) + res = arvados_api_client.api self, '/current' + arvados_api_client.unpack_api_response(res) end def self.system - $arvados_system_user ||= begin - res = $arvados_api_client.api self, '/system' - $arvados_api_client.unpack_api_response(res) - end + @@arvados_system_user ||= begin + res = arvados_api_client.api self, '/system' + arvados_api_client.unpack_api_response(res) + end end def full_name @@ -22,17 +22,17 @@ class User < ArvadosBase end def activate - self.private_reload($arvados_api_client.api(self.class, - "/#{self.uuid}/activate", - {})) + self.private_reload(arvados_api_client.api(self.class, + "/#{self.uuid}/activate", + {})) 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 @@ -40,9 +40,13 @@ class User < ArvadosBase end def unsetup - self.private_reload($arvados_api_client.api(self.class, - "/#{self.uuid}/unsetup", - {})) + self.private_reload(arvados_api_client.api(self.class, + "/#{self.uuid}/unsetup", + {})) + end + + def self.setup params + arvados_api_client.api(self, "/setup", params) end end