1 class User < ArvadosBase
4 @attribute_sortkey['first_name'] = '050'
5 @attribute_sortkey['last_name'] = '051'
9 res = $arvados_api_client.api self, '/current'
10 $arvados_api_client.unpack_api_response(res)
14 $arvados_system_user ||= begin
15 res = $arvados_api_client.api self, '/system'
16 $arvados_api_client.unpack_api_response(res)
21 (self.first_name || "") + " " + (self.last_name || "")
24 def attribute_editable?(attr)
25 (not (self.uuid.andand.match(/000000000000000$/) and self.is_admin)) and super(attr)