Merge branch '2800-python-global-state' into 2800-pgs
[arvados.git] / apps / workbench / app / models / user.rb
index 74f4a6b1de060a0b2b59e557e1c6091d78569ae5..87ea5faefa85976b8d11350b291dffc28b2514d7 100644 (file)
@@ -27,11 +27,15 @@ 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, *args
 def attribute_editable? attr, *args
     (not (self.uuid.andand.match(/000000000000000$/) and self.is_admin)) and super
   end